Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: run more eb tests #458

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 22 additions & 10 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,27 +71,39 @@ jobs:
test_coatjava:
needs: [ build ]
strategy:
fail-fast: true
fail-fast: false
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

consider reverting this before merging (currently false to see which tests fail)

Suggested change
fail-fast: false
fail-fast: true

matrix:
runner:
- ubuntu-latest
id:
- kpp
- eb-ep
- eb-eg
- eb-epc
- eb-enc
- eb-eftpi
- eb-epC
- eb-enC
- eb-eFTpi
- eb-epi
- eb-ek
- eb-en
- eb-epiC
- eb-ekC
- eb-eFTp
runner:
- ubuntu-latest
include:
# run all tests on ubuntu
- { id: kpp, cmd: ./run-advanced-tests.sh }
- { id: eb-ep, cmd: ./run-eb-tests.sh -100 electronproton }
- { id: eb-eg, cmd: ./run-eb-tests.sh -100 electrongamma }
- { id: eb-epc, cmd: ./run-eb-tests.sh -100 electronprotonC }
- { id: eb-enc, cmd: ./run-eb-tests.sh -100 electronneutronC }
- { id: eb-eftpi, cmd: ./run-eb-tests.sh -100 electronFTpion }
- { id: eb-epC, cmd: ./run-eb-tests.sh -100 electronprotonC }
- { id: eb-enC, cmd: ./run-eb-tests.sh -100 electronneutronC }
- { id: eb-eFTpi, cmd: ./run-eb-tests.sh -100 electronFTpion }
- { id: eb-epi, cmd: ./run-eb-tests.sh -100 electronpion }
- { id: eb-ek, cmd: ./run-eb-tests.sh -100 electronkaon }
- { id: eb-en, cmd: ./run-eb-tests.sh -100 electronneutron }
- { id: eb-epiC, cmd: ./run-eb-tests.sh -100 electronpionC }
- { id: eb-ekC, cmd: ./run-eb-tests.sh -100 electronkaonC }
- { id: eb-eFTp, cmd: ./run-eb-tests.sh -100 electronFTproton }
# run one macos test
- { runner: macos-latest, id: eb-ep, cmd: ./run-eb-tests.sh -100 electronproton }
- { id: eb-ep, runner: macos-latest, cmd: ./run-eb-tests.sh -100 electronproton }
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
Expand Down