-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zachary W Sweger
committed
Sep 20, 2024
1 parent
7ef53b6
commit 3a0e52f
Showing
2 changed files
with
64 additions
and
20 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
your_benchmark:compile: | ||
extends: .phy_benchmark | ||
stage: compile | ||
script: | ||
- echo "You can compile your code here!" | ||
|
||
your_benchmark:generate: | ||
extends: .phy_benchmark | ||
stage: generate | ||
script: | ||
- echo "I will generate events here!" | ||
- echo "Add event-generator code to do this" | ||
|
||
your_benchmark:simulate: | ||
extends: .phy_benchmark | ||
stage: simulate | ||
script: | ||
- echo "I will simulate detector response here!" | ||
|
||
your_benchmark:reconstruct: | ||
extends: .phy_benchmark | ||
stage: reconstruct | ||
script: | ||
- echo "Event reconstruction here!" | ||
|
||
your_benchmark:analyze: | ||
extends: .phy_benchmark | ||
stage: analyze | ||
needs: | ||
- ["your_benchmark:reconstruct"] | ||
script: | ||
- echo "I will analyze events here!" | ||
- echo "This step requires that the reconstruct step be completed" | ||
|
||
your_benchmark:results: | ||
extends: .phy_benchmark | ||
stage: collect | ||
needs: | ||
- ["your_benchmark:analyze"] | ||
script: | ||
- echo "I will collect results here!" | ||
- echo "This step requires that the analyze step be completed" |