log ipns record publishing #3396
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] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/local-s3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Build with Ant | |
run: ant -noinput -buildfile build.xml dist | |
- name: GWT build | |
run: ant -noinput -buildfile build.xml gwtc | |
- name: install fuse 2 | |
run: sudo apt install libfuse2 | |
if: matrix.os == 'ubuntu-latest' | |
- name: Run tests | |
timeout-minutes: 120 | |
run: ant -noinput -buildfile build.xml test | |
- name: Reproducible build | |
run: ./reproducible-test.sh |