Skip to content

Commit

Permalink
back to 6.3 and show built jars
Browse files Browse the repository at this point in the history
  • Loading branch information
jurajpiar committed May 23, 2024
1 parent 2152d0b commit 7c0ecdf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ jobs:
./configure.sh
./gradlew --no-daemon dependencies
./gradlew --no-daemon --stacktrace build -x test
- name: List the built jars
run: |
find rskj-core/build/libs/ -name "*.jar"
sonarqube:
needs: build
Expand Down Expand Up @@ -189,11 +194,16 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: List the built jars
run: |
find rskj-core/build/libs/ -name "*.jar"
- name: Start RSKj and Run Tests
working-directory: mining-integration-tests
run: |
version=$(tr -d "'\"" < ../rskj-core/src/main/resources/version.properties \
| cut -d = -f 2- | paste -sd - -)
echo "Using RskJ version $version at ../rskj-core/build/libs/rskj-core-$version-all.jar"
java -Drsk.conf.file=./rsk-integration-test.conf -cp ../rskj-core/build/libs/rskj-core-"$version"-all.jar co.rsk.Start --regtest & rskpid=$!
export tries=0
export MAX_TRIES=10
Expand Down
2 changes: 1 addition & 1 deletion rskj-core/src/main/resources/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
versionNumber='6.2.0'
versionNumber='6.3.0'
modifier="SNAPSHOT"

0 comments on commit 7c0ecdf

Please sign in to comment.