forked from accel-sim/accel-sim-framework
-
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.
Send email after CI finish (accel-sim#312)
* adding email to CI * ignore on push for merge queue created branches * us dev branch gpu-app-collection * include action link
- Loading branch information
Showing
3 changed files
with
17 additions
and
9 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 |
---|---|---|
|
@@ -6,7 +6,8 @@ name: Long Tests | |
on: | ||
# Triggers the workflow on push or pull request events but only for the mydev branch | ||
push: | ||
# pull_request: | ||
branches-ignore: | ||
- "gh-readonly-queue**" | ||
merge_group: | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
|
@@ -74,7 +75,14 @@ jobs: | |
./util/plotting/plot-correlation.py -c ./statistics-archive/ubench/ampere-ubench-sass.csv -H ./hw_run/AMPERE-RTX3070/11.2/ | tee ampere-ubench-correl.txt | ||
ssh ghci@tgrogers-pc01 mkdir -p /home/ghci/accel-sim/correl/git_${GITHUB_REF}"_"$GITHUB_RUN_NUMBER"_"$GITHUB_RUN_ATTEMPT/ | ||
rsync --delete -r ./util/plotting/correl-html/ ghci@tgrogers-pc01:/home/ghci/accel-sim/correl/git_${GITHUB_REF}"_"$GITHUB_RUN_NUMBER"_"$GITHUB_RUN_ATTEMPT/ | ||
echo "Correlation Report at: https://tgrogers-pc01.ecn.purdue.edu/github-ci/accel-sim/correl/git_${GITHUB_REF}"_"$GITHUB_RUN_NUMBER"_"$GITHUB_RUN_ATTEMPT/" | ||
BODY="Github CI - Build $GITHUB_REF SUCCESS. | ||
Action link: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
Branch/PR Name: $GITHUB_REF_NAME | ||
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 - Build $GITHUB_REF SUCCESS" | ||
TO="${{ secrets.GROUP_EMAIL }}" | ||
echo "$BODY" | mail -s "$SUBJECT" "$TO" | ||
echo "Correlation Report at: https://tgrogers-pc01.ecn.purdue.edu/github-ci/accel-sim/correl/git_${GITHUB_REF}"_"$GITHUB_RUN_NUMBER"_"$GITHUB_RUN_ATTEMPT/." | ||
PTX-Simulation: | ||
if: github.repository == 'accel-sim/accel-sim-framework' | ||
runs-on: tgrogers-raid | ||
|
@@ -102,7 +110,7 @@ jobs: | |
source ./gpu-simulator/setup_environment.sh | ||
rm -rf ./gpu-app-collection | ||
git clone [email protected]:accel-sim/gpu-app-collection.git | ||
git clone -b dev [email protected]:accel-sim/gpu-app-collection.git | ||
source ./gpu-app-collection/src/setup_environment | ||
srun -c20 make rodinia_2.0-ft GPU_Microbenchmark -j20 -C ./gpu-app-collection/src | ||
./gpu-app-collection/get_regression_data.sh | ||
|
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