File tree 3 files changed +3
-5
lines changed
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,6 @@ jobs:
190
190
env :
191
191
AWS_ACCESS_KEY_ID : ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
192
192
AWS_SECRET_ACCESS_KEY : ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
193
- TOOLSTATE_REPO_ACCESS_TOKEN : ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
194
193
195
194
- name : create github artifacts
196
195
run : src/ci/scripts/create-doc-artifacts.sh
@@ -241,3 +240,5 @@ jobs:
241
240
if : needs.calculate_matrix.outputs.run_type == 'auto'
242
241
env :
243
242
TOOLSTATE_REPO_ACCESS_TOKEN : ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}
243
+ TOOLSTATE_ISSUES_API_URL : https://api.github.com/repos/rust-lang/rust/issues
244
+ TOOLSTATE_PUBLISH : 1
Original file line number Diff line number Diff line change 50
50
production :
51
51
&production
52
52
DEPLOY_BUCKET : rust-lang-ci2
53
- TOOLSTATE_ISSUES_API_URL : https://api.github.com/repos/rust-lang/rust/issues
54
- TOOLSTATE_PUBLISH : 1
55
53
# AWS_SECRET_ACCESS_KEYs are stored in GitHub's secrets storage, named
56
54
# AWS_SECRET_ACCESS_KEY_<keyid>. Including the key id in the name allows to
57
55
# rotate them in a single branch while keeping the old key in another
Original file line number Diff line number Diff line change 3
3
4
4
# This script computes the new "current" toolstate for the toolstate repo (not to be
5
5
# confused with publishing the test results, which happens in `src/bootstrap/toolstate.rs`).
6
- # It gets called from `src/ci/publish_toolstate.sh` when a new commit lands on `master`
7
- # (i.e., after it passed all checks on `auto`).
6
+ # It gets called from `src/ci/publish_toolstate.sh` at the end of an `auto` build.
8
7
9
8
from __future__ import print_function
10
9
You can’t perform that action at this time.
0 commit comments