Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Release version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
krakowski committed Dec 21, 2018
1 parent 08a5aee commit 1048fe0
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 3 deletions.
32 changes: 32 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
language: java
install: true

stages:
- name: build

jobs:
include:
- stage: build
script: ./gradlew build

before_deploy:
- ./gradlew dxa-chunkbench:jar -Drelease=true
- ./gradlew dxa-helloworld:jar -Drelease=true
- ./gradlew dxa-migration:jar -Drelease=true
- ./gradlew dxa-terminal:server:jar -Drelease=true
- ./gradlew dxa-terminal:client:distZip -Drelease=true

deploy:
provider: releases
api_key: ${ACCESS_TOKEN}
skip_cleanup: true
file:
- dxa-chunkbench/build/libs/dxa-chunkbench.jar
- dxa-helloworld/build/libs/dxa-helloworld.jar
- dxa-migration/build/libs/dxa-migration.jar
- dxa-terminal/server/build/libs/dxa-terminal.jar
- dxa-terminal/client/build/distributions/dxa-terminal-client.zip
on:
repo: hhu-bsinfo/dxapps
branch: master
tags: true
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ determine the performance of DXRAM's key-value storage
commands on them.

# Compiling
To compile all applications, simply run the *build.sh* script from the root of the repository:
To compile an application, simply run the *build.sh* script from the root of the repository specifying the application's module:
```
./build.sh
./build.sh dxa-terminal:server
```

The output jar-files are located in the sub-project directories in *build*.
The output jar-files will be located within *~/dxram/dxapp*.

# Deployment and running an application
Please refer to the documentation in the [DXRAM](https://github.com/hhu-bsinfo/dxram) repository (doc/Applications.md)
Expand Down
4 changes: 4 additions & 0 deletions dxa-terminal/client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ dependencies {
test {
useJUnitPlatform()
}

distZip {
archiveName "dxa-terminal-client.zip"
}

0 comments on commit 1048fe0

Please sign in to comment.