Skip to content

Commit

Permalink
test out mail
Browse files Browse the repository at this point in the history
  • Loading branch information
JRPan committed Jun 26, 2024
1 parent 49c2ca7 commit bfb1a59
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/short-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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"

0 comments on commit bfb1a59

Please sign in to comment.