94cc621598
Cribbed from https://cloudblogs.microsoft.com/opensource/2019/04/05/publishing-github-pages-from-azure-pipelines/ and https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/install-ssh-key?view=azure-devops
58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
jobs:
|
|
- job: check_formatting
|
|
displayName: Check formatting
|
|
pool:
|
|
vmImage: ubuntu-16.04
|
|
steps:
|
|
- script: |
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
$HOME/.cargo/bin/rustup component add rustfmt
|
|
displayName: Install stable Rust
|
|
- script: |
|
|
$HOME/.cargo/bin/cargo fmt -- --check
|
|
displayName: Run rustfmt
|
|
|
|
- job: run_book_tests
|
|
displayName: Book code example tests
|
|
pool:
|
|
vmImage: ubuntu-16.04
|
|
steps:
|
|
- script: |
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
$HOME/.cargo/bin/rustup component add rustfmt
|
|
displayName: Install stable Rust
|
|
- script: |
|
|
cd docs/book/tests && $HOME/.cargo/bin/cargo test
|
|
displayName: Test book code examples via skeptic
|
|
|
|
- job: build_book_master
|
|
displayName: Build rendered book on master branch and push to Github
|
|
pool:
|
|
vmImage: ubuntu-16.04
|
|
dependsOn: run_book_tests
|
|
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
|
|
variables:
|
|
- group: github-keys
|
|
steps:
|
|
- task: InstallSSHKey@0
|
|
inputs:
|
|
hostName: $(GHSshKnownHosts)
|
|
sshPublicKey: $(GHSshPub)
|
|
sshKeySecureFile: $(GHSshPriv)
|
|
- script: |
|
|
./docs/book/ci-build.sh master
|
|
|
|
- template: _build/azure-pipelines-template.yml
|
|
parameters:
|
|
name: Linux
|
|
vmImage: ubuntu-16.04
|
|
|
|
- template: _build/azure-pipelines-template.yml
|
|
parameters:
|
|
name: macOS
|
|
vmImage: macOS-10.13
|
|
|
|
- template: _build/azure-pipelines-template.yml
|
|
parameters:
|
|
name: Windows
|
|
vmImage: vs2017-win2016
|