diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /third_party/rust/bytes/ci/azure-test-stable.yml | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/bytes/ci/azure-test-stable.yml')
-rw-r--r-- | third_party/rust/bytes/ci/azure-test-stable.yml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/third_party/rust/bytes/ci/azure-test-stable.yml b/third_party/rust/bytes/ci/azure-test-stable.yml new file mode 100644 index 0000000000..e543eeeb43 --- /dev/null +++ b/third_party/rust/bytes/ci/azure-test-stable.yml @@ -0,0 +1,50 @@ +parameters: + cmd: test + rust_version: stable + features: [] + +jobs: +- job: ${{ parameters.name }} + displayName: ${{ parameters.displayName }} + strategy: + matrix: + Linux: + vmImage: ubuntu-16.04 + + ${{ if parameters.cross }}: + MacOS: + vmImage: macOS-10.13 + Windows: + vmImage: vs2017-win2016 + pool: + vmImage: $(vmImage) + + steps: + - template: azure-install-rust.yml + parameters: + rust_version: ${{parameters.rust_version}} + + # Run with default crate features + - script: cargo ${{ parameters.cmd }} + displayName: cargo ${{ parameters.cmd }} + + # Run with each specified feature + - ${{ each feature in parameters.features }}: + - script: cargo ${{ parameters.cmd }} --features ${{ feature }} + displayName: cargo ${{ parameters.cmd }} --features ${{ feature }} + + - ${{ if eq(parameters.cmd, 'test') }}: + - script: cargo doc --no-deps + displayName: cargo doc --no-deps + + - ${{ if parameters.benches }}: + - script: cargo check --benches + displayName: Check benchmarks + + # Run with all features + - script: cargo ${{ parameters.cmd }} --all-features + displayName: cargo ${{ parameters.cmd }} --all-features + + # Run with no default features + - script: cargo check --no-default-features + displayName: cargo check --no-default-features |