Skip to content

fix: update sanity check for mainnet, testnet and signet #62

fix: update sanity check for mainnet, testnet and signet

fix: update sanity check for mainnet, testnet and signet #62

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
java: ['11', '17', '19']
distribution: ['temurin']
gradle: ['7.6.2']
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: assemble --stacktrace
- name: Upload Artifacts
uses: actions/upload-artifact@v3
if: always()
with:
name: groestlcoinj-core-${{ matrix.java }}-${{ matrix.os }}
path: |
core/build/libs/