File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ name: CI
20
20
branches :
21
21
- auto
22
22
- try
23
+ - try-perf
23
24
- master
24
25
pull_request :
25
26
branches :
@@ -146,7 +147,7 @@ jobs:
146
147
CACHES_AWS_ACCESS_KEY_ID : AKIA46X5W6CZI5DHEBFL
147
148
ARTIFACTS_AWS_ACCESS_KEY_ID : AKIA46X5W6CZN24CBO55
148
149
CACHE_DOMAIN : ci-caches.rust-lang.org
149
- if : " github.event_name == 'push' && github.ref == 'refs/heads/try' && github.repository == 'rust-lang-ci/rust'"
150
+ if : " github.event_name == 'push' && ( github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
150
151
strategy :
151
152
matrix :
152
153
include :
@@ -717,7 +718,7 @@ jobs:
717
718
try-success :
718
719
needs :
719
720
- try
720
- if : " success() && github.event_name == 'push' && github.ref == 'refs/heads/try' && github.repository == 'rust-lang-ci/rust'"
721
+ if : " success() && github.event_name == 'push' && ( github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
721
722
steps :
722
723
- name : mark the job as a success
723
724
run : exit 0
@@ -727,7 +728,7 @@ jobs:
727
728
try-failure :
728
729
needs :
729
730
- try
730
- if : " !success() && github.event_name == 'push' && github.ref == 'refs/heads/try' && github.repository == 'rust-lang-ci/rust'"
731
+ if : " !success() && github.event_name == 'push' && ( github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
731
732
steps :
732
733
- name : mark the job as a failure
733
734
run : exit 1
Original file line number Diff line number Diff line change 247
247
branches :
248
248
- auto
249
249
- try
250
+ - try-perf
250
251
- master
251
252
pull_request :
252
253
branches :
@@ -285,7 +286,7 @@ jobs:
285
286
name : try
286
287
env :
287
288
<< : [*shared-ci-variables, *prod-variables]
288
- if : github.event_name == 'push' && github.ref == 'refs/heads/try' && github.repository == 'rust-lang-ci/rust'
289
+ if : github.event_name == 'push' && ( github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'
289
290
strategy :
290
291
matrix :
291
292
include :
@@ -645,11 +646,11 @@ jobs:
645
646
# successful listening to webhooks only.
646
647
try-success :
647
648
needs : [try]
648
- if : " success() && github.event_name == 'push' && github.ref == 'refs/heads/try' && github.repository == 'rust-lang-ci/rust'"
649
+ if : " success() && github.event_name == 'push' && ( github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
649
650
<< : *base-success-job
650
651
try-failure :
651
652
needs : [try]
652
- if : " !success() && github.event_name == 'push' && github.ref == 'refs/heads/try' && github.repository == 'rust-lang-ci/rust'"
653
+ if : " !success() && github.event_name == 'push' && ( github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'"
653
654
<< : *base-failure-job
654
655
auto-success :
655
656
needs : [auto]
You can’t perform that action at this time.
0 commit comments