File tree 2 files changed +5
-13
lines changed
2 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 11
11
steps :
12
12
- name : Connect to SSH
13
13
14
- env :
15
- WEEKLY_CI : " true"
16
14
with :
17
15
host : ${{ secrets.HOST }}
18
16
username : ${{ secrets.USERNAME }}
19
17
passphrase : ${{ secrets.PASSPHRASE }}
20
18
key : ${{ secrets.KEY }}
21
- envs : WEEKLY_CI
22
19
script : bash weekly
Original file line number Diff line number Diff line change 2
2
# This script is used by the dev-desktop-us-1 instance once a week to benchmark
3
3
# Don't use this script directly, use becnh (which is user friendly and all that)
4
4
5
- if [ -z " $WEEKLY_CI " ]; then
6
- echo " This script shouldn't be ran apart from weekly.yaml. It has 0 benefits to
7
- running \` becnh --master\` . Stop being so silly! :3"
8
- fi
9
-
10
5
cd becnh || exit 1
11
- # bash becnh --master
12
- # cp rustc-perf/results.db .
13
- # git add results.db
14
- # git commit -m "Update results.db for $(date +%Y-%m-%d)"
15
- # git push
6
+ bash becnh --master
7
+ cp rustc-perf/results.db .
8
+ git add results.db
9
+ git commit -m " Update results.db for $( date +%Y-%m-%d) "
10
+ git push
16
11
17
12
echo " Weekly run is done!"
You can’t perform that action at this time.
0 commit comments