File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11
11
- ' master'
12
12
schedule :
13
13
- cron : ' 6 6 * * *' # At 6:06 UTC every day.
14
+ - cron : ' 42 * * * *' # Also each hour, for testing
14
15
15
16
env :
16
17
CARGO_UNSTABLE_SPARSE_REGISTRY : ' true'
@@ -196,7 +197,10 @@ jobs:
196
197
git config --global user.name 'The Miri Conjob Bot'
197
198
git config --global user.email '[email protected] '
198
199
- name : get changes from rustc
199
- run : ./miri rustc-pull
200
+ run : |
201
+ git status # just to see more of what is happening
202
+ git checkout master # by default we are not on a branch
203
+ ./miri rustc-pull
200
204
- name : Install rustup-toolchain-install-master
201
205
run : cargo install -f rustup-toolchain-install-master
202
206
- name : format changes (if any)
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ rustc-pull)
124
124
git commit rust-version -m " Preparing for merge from rustc" || (echo " FAILED to commit rust-version file, something went wrong" ; exit 1)
125
125
# Fetch given rustc commit and note down which one that was
126
126
git fetch http://localhost:8000/rust-lang/rust.git@$FETCH_COMMIT$JOSH_FILTER .git || (echo " FAILED to fetch new commits, something went wrong" ; exit 1)
127
- git merge FETCH_HEAD --no-ff -m " Merge from rustc" || (echo " FAILED to merge new commits, something went wrong" ; exit 1)
127
+ git merge FETCH_HEAD --no-ff -m " Merge from rustc" || (echo " FAILED to merge new commits ( $( git rev-parse FETCH_HEAD ) ) , something went wrong" ; exit 1)
128
128
exit 0
129
129
;;
130
130
rustc-push)
You can’t perform that action at this time.
0 commit comments