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

Correct xml file being called for different beam settings in CI #1616

Merged
merged 4 commits into from
Sep 17, 2024
Merged
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
25 changes: 17 additions & 8 deletions .github/workflows/linux-eic-shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ jobs:
detector_config: craterlake_tracking_only
- beam: 18x275
minq2: 1000
detector_config: craterlake
detector_config: craterlake_18x275
steps:
- uses: cvmfs-contrib/github-action-cvmfs@v4
- name: Retrieve simulation files
Expand Down Expand Up @@ -431,8 +431,13 @@ jobs:
- detector-info
strategy:
matrix:
beam: [5x41, 10x100, 18x275]
detector_config: [craterlake]
include:
- beam: 5x41
detector_config: craterlake_5x41
- beam: 10x100
detector_config: craterlake
- beam: 18x275
detector_config: craterlake_18x275
steps:
- uses: cvmfs-contrib/github-action-cvmfs@v4
- name: Retrieve simulation files
Expand Down Expand Up @@ -855,23 +860,27 @@ jobs:
- npsim-minbias
strategy:
matrix:
CC: [clang]
beam: [10x100, 18x275]
minq2: [0]
detector_config: [craterlake]
include:
- CC: clang
beam: 5x41
minq2: 0
detector_config: craterlake_5x41
- CC: clang
beam: 10x100
minq2: 0
detector_config: craterlake
- CC: clang
beam: 18x275
minq2: 0
detector_config: craterlake_18x275
- CC: clang
beam: 10x100
minq2: 1000
detector_config: craterlake_tracking_only
- CC: clang
beam: 18x275
minq2: 1000
detector_config: craterlake
detector_config: craterlake_18x275
simonge marked this conversation as resolved.
Show resolved Hide resolved
steps:
- name: mmap rnd_bits workaround
# https://github.com/actions/runner/issues/3207#issuecomment-2000066889
Expand Down
Loading