Upgrade 0.17 alpha v2 #94
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
java: ['11', '17', '19'] | |
distribution: ['temurin'] | |
gradle: ['7.6.2'] | |
include: | |
# Special case to test something close to Debian config with the oldest supported (standard) Gradle on Ubuntu | |
- os: ubuntu-latest | |
java: '11' | |
distribution: 'temurin' | |
gradle: '4.10.3' | |
fail-fast: false | |
name: JAVA ${{ matrix.distribution }} ${{ matrix.java }} OS ${{ matrix.os }} Gradle ${{ matrix.gradle }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java }} | |
- name: Build Groestld library | |
run: | | |
cd contrib/groestld | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . | |
cd ../../.. | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: ${{ matrix.gradle }} | |
arguments: -PtestJdk8=true build --info --stacktrace | |
- name: Upload Test Results and Reports | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: groestlcoinj-core-test-results-jdk${{ matrix.java }}-${{ matrix.os }} | |
path: | | |
core/build/reports/tests/test/ | |
core/build/test-results/test/ | |
wallettool/build/reports/tests/test/ | |
wallettool/build/test-results/test/ | |
integration-test/build/reports/tests/test/ | |
integration-test/build/test-results/test/ |