Bug issues to FIO and fixes. Waiting for 0.7.4 #520
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: "Testing known case studies" | |
on: | |
push: | |
branches: | |
- "master" | |
- "develop" | |
concurrency: | |
group: Testing known case studies @ ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-cases: | |
strategy: | |
matrix: | |
jabba_jdk: [temurin@17, amazon-corretto@17, zulu@17, microsoft@17] | |
target: [x86_64-unknown-linux-musl, x86_64-pc-windows-gnu] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: earthly/actions-setup@v1 | |
with: | |
version: v0.7.8 | |
- name: Test cases | |
run: | | |
cd ${{ github.workspace }} | |
earthly +test-case-studies --jabba_jdk="${{ matrix.jabba_jdk }}" --targets="${{ matrix.target }}" |