]> git.lizzy.rs Git - rust.git/blob - src/ci/azure-pipelines/master.yml
Rollup merge of #71607 - RalfJung:pin-drop-panic, r=nikomatsakis
[rust.git] / src / ci / azure-pipelines / master.yml
1 #####################################
2 ##    READ BEFORE CHANGING THIS    ##
3 #####################################
4
5 # We're in the process of evaluating GitHub Actions as a possible replacement
6 # for Azure Pipelines, and at the moment the configuration is duplicated
7 # between the two CI providers. Be sure to also change the configuration in
8 # src/ci/github-actions when changing this file.
9
10 #####################################
11
12 #
13 # Azure Pipelines job to publish toolstate. Only triggers on pushes to master.
14 #
15
16 pr: none
17 trigger:
18   - master
19
20 variables:
21 - group: prod-credentials
22
23 pool:
24   vmImage: ubuntu-16.04
25
26 steps:
27 - checkout: self
28   fetchDepth: 2
29
30 - script: src/ci/publish_toolstate.sh
31   displayName: Publish toolstate
32   env:
33     TOOLSTATE_REPO_ACCESS_TOKEN: $(TOOLSTATE_REPO_ACCESS_TOKEN)