Skip to content

Commit bfb1a59

Browse files
committed
test out mail
1 parent 49c2ca7 commit bfb1a59

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

.github/workflows/short-tests.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,7 @@ jobs:
3030
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3131
- uses: actions/checkout@v4
3232
- name: Run Simulation
33-
run: |
34-
echo "skipped SASS-Simulation. Will perform in merge queue"
35-
BODY="Correlation Report at: https://tgrogers-pc01.ecn.purdue.edu/github-ci/accel-sim/correl/git_${GITHUB_REF}"_"$GITHUB_RUN_NUMBER"_"$GITHUB_RUN_ATTEMPT/"
36-
SUBJECT="Github CI - $GITHUB_REF SUCCESS"
37-
TO="pan251@purdue.edu"
38-
echo "$BODY" | mail -s "$SUBJECT" "$TO"
39-
echo "$BODY"
33+
run: echo "skipped SASS-Simulation. Will perform in merge queue"
4034
Tracer-Tool:
4135
runs-on: ubuntu-latest
4236

@@ -45,4 +39,18 @@ jobs:
4539
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
4640
- uses: actions/checkout@v4
4741
- name: Run Simulation
48-
run: echo "skipped SASS-Simulation. Will perform in merge queue"
42+
run: echo "skipped SASS-Simulation. Will perform in merge queue"
43+
SASS-Simulation:
44+
runs-on: tgrogers-raid
45+
defaults:
46+
run:
47+
shell: bash
48+
steps:
49+
- uses: actions/checkout@v4
50+
- name: mail test
51+
run: |
52+
BODY="Correlation Report at: https://tgrogers-pc01.ecn.purdue.edu/github-ci/accel-sim/correl/git_${GITHUB_REF}"_"$GITHUB_RUN_NUMBER"_"$GITHUB_RUN_ATTEMPT/"
53+
SUBJECT="Github CI - $GITHUB_REF SUCCESS"
54+
TO="pan251@purdue.edu"
55+
echo "$BODY" | mail -s "$SUBJECT" "$TO"
56+
echo "$BODY"

0 commit comments

Comments
 (0)