Services: add NODE_P2P_V2 service bit #605
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: GraalVM Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
java-version: [ '17', '21' ] | |
distribution: [ 'graalvm-community' ] | |
gradle: ['8.5'] | |
fail-fast: false | |
name: ${{ matrix.os }} JDK ${{ matrix.java-version }}.${{ matrix.distribution }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v1 | |
- name: Set up GraalVM | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: ${{ matrix.distribution }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2.8.0 | |
with: | |
gradle-version: ${{ matrix.gradle }} | |
arguments: test nativeCompile --init-script build-scan-agree.gradle --scan --info --stacktrace | |
- name: Upload wallet-tool as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wallet-tool-${{ matrix.os }} | |
path: wallettool/build/native/nativeCompile/wallet-tool |