-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanups, first attempt at pages upload
- Loading branch information
1 parent
1eb8e7f
commit 3333d6d
Showing
3 changed files
with
57 additions
and
19 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,9 +6,10 @@ on: | |
- cron: '15 06 * * *' # UTC 6:15am, corresponds to 00:15 CST or 01:15 CDT | ||
push: | ||
paths: | ||
# Also run the build when this file gets modified as part of a PR | ||
# Also run the build when these files are modified as part of a PR | ||
- '.github/workflows/autobuild.yml' | ||
- '.github/workflows/delta-sbatch-slurm.sh' | ||
- '.github/workflows/jobmonitor.sh' | ||
|
||
|
||
# Cancel in progress CI runs when a new run targeting the same PR or branch/tag is triggered. | ||
|
@@ -18,7 +19,7 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
Delta: | ||
delta: | ||
timeout-minutes: 60 | ||
|
||
runs-on: delta | ||
|
@@ -36,15 +37,34 @@ jobs: | |
pwd | ||
- name: build | ||
run: | | ||
set -ex | ||
set -x | ||
export target="mpi-linux-x86_64" | ||
.github/workflows/jobmonitor.sh .github/workflows/delta-sbatch-slurm.sh | ||
- name: results | ||
run: | | ||
set -x | ||
cat result.latest | ||
if grep '0' result.latest | ||
then | ||
echo "Success" | ||
res="success" | ||
else | ||
echo "Failure" | ||
fi | ||
# should also https://github.com/marketplace/actions/send-email | ||
res="failure" | ||
fi | ||
echo $res | ||
git clone [email protected]:UIUC-PPL/autobuild-logs | ||
cd autobuild-logs | ||
mkdir -p delta/mpi-linux-x86_64 | ||
cd delta/mpi-linux-x86_64 | ||
cp ../../output.latest Delta_mpi-linux-x86_64_$(date '+%Y-%m-%dT%H-%M-%S%z')_output_$res.txt | ||
git add . | ||
git commit -m "Autobuild results for delta/mpi-linux-x86_64" | ||
git push | ||
# should also https://github.com/marketplace/actions/send-email |
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