Update progress listener API to provide tile counts at each start notification #287
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: Gradle | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [8, 11, 17] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
gradle_commands: --stacktrace build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
cache: "gradle" | |
- name: Install libraries | |
run: | | |
sudo apt-get install -y libblosc1 | |
- name: Run commands | |
run: | | |
./gradlew ${{ env.gradle_commands }} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: bioformats2raw ${{ matrix.java }} | |
path: build/distributions/*.zip | |
retention-days: 30 |