-
Notifications
You must be signed in to change notification settings - Fork 118
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
Showing
1 changed file
with
16 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,13 +30,7 @@ jobs: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v4 | ||
- name: Run Simulation | ||
run: | | ||
echo "skipped SASS-Simulation. Will perform in merge queue" | ||
BODY="Correlation Report at: https://tgrogers-pc01.ecn.purdue.edu/github-ci/accel-sim/correl/git_${GITHUB_REF}"_"$GITHUB_RUN_NUMBER"_"$GITHUB_RUN_ATTEMPT/" | ||
SUBJECT="Github CI - $GITHUB_REF SUCCESS" | ||
TO="[email protected]" | ||
echo "$BODY" | mail -s "$SUBJECT" "$TO" | ||
echo "$BODY" | ||
run: echo "skipped SASS-Simulation. Will perform in merge queue" | ||
Tracer-Tool: | ||
runs-on: ubuntu-latest | ||
|
||
|
@@ -45,4 +39,18 @@ jobs: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v4 | ||
- name: Run Simulation | ||
run: echo "skipped SASS-Simulation. Will perform in merge queue" | ||
run: echo "skipped SASS-Simulation. Will perform in merge queue" | ||
SASS-Simulation: | ||
runs-on: tgrogers-raid | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: mail test | ||
run: | | ||
BODY="Correlation Report at: https://tgrogers-pc01.ecn.purdue.edu/github-ci/accel-sim/correl/git_${GITHUB_REF}"_"$GITHUB_RUN_NUMBER"_"$GITHUB_RUN_ATTEMPT/" | ||
SUBJECT="Github CI - $GITHUB_REF SUCCESS" | ||
TO="[email protected]" | ||
echo "$BODY" | mail -s "$SUBJECT" "$TO" | ||
echo "$BODY" |