summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/.travis.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/tools/rustfmt/.travis.yml
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/rustfmt/.travis.yml')
-rw-r--r--src/tools/rustfmt/.travis.yml77
1 files changed, 77 insertions, 0 deletions
diff --git a/src/tools/rustfmt/.travis.yml b/src/tools/rustfmt/.travis.yml
new file mode 100644
index 000000000..d699bd842
--- /dev/null
+++ b/src/tools/rustfmt/.travis.yml
@@ -0,0 +1,77 @@
+sudo: false
+language: rust
+rust: nightly
+os: linux
+cache:
+ directories:
+ - $HOME/.cargo
+
+addons:
+ apt:
+ packages:
+ - libcurl4-openssl-dev
+ - libelf-dev
+ - libdw-dev
+
+matrix:
+ include:
+ - env: DEPLOY=LINUX
+ - env: CFG_RELEASE_CHANNEL=beta
+ - os: osx
+ - env: INTEGRATION=bitflags
+ - env: INTEGRATION=chalk
+ - env: INTEGRATION=crater
+ - env: INTEGRATION=error-chain
+ - env: INTEGRATION=glob
+ - env: INTEGRATION=log
+ - env: INTEGRATION=mdbook
+ - env: INTEGRATION=packed_simd
+ - env: INTEGRATION=rust-semverver
+ - env: INTEGRATION=stdsimd TARGET=x86_64-unknown-linux-gnu
+ - env: INTEGRATION=tempdir
+ - env: INTEGRATION=futures-rs
+ allow_failures:
+ # Using old configuration option
+ - env: INTEGRATION=rand
+ # Doesn't build - keep this in allow_failures as it's fragile to breaking changes of rustc.
+ - env: INTEGRATION=rust-clippy
+ # Doesn't build - seems to be because of an option
+ - env: INTEGRATION=packed_simd
+ # Doesn't build - a temporal build failure due to breaking changes in the nightly compilre
+ - env: INTEGRATION=rust-semverver
+ # can be moved back to include section after https://github.com/rust-lang-nursery/failure/pull/298 is merged
+ - env: INTEGRATION=failure
+ # `cargo test` doesn't finish - disabling for now.
+ # - env: INTEGRATION=cargo
+
+script:
+ - |
+ if [ -z ${INTEGRATION} ]; then
+ export CFG_RELEASE_CHANNEL=nightly
+ export CFG_RELEASE=nightly
+ cargo build
+ cargo test
+ cargo test -- --ignored
+ else
+ ./ci/integration.sh
+ fi
+
+after_success:
+- if [ -z ${INTEGRATION} ]; then travis-cargo coveralls --no-sudo; fi
+
+before_deploy:
+ # TODO: cross build
+ - cargo build --release --target=x86_64-unknown-linux-gnu
+ - tar czf rustfmt-x86_64-unknown-linux-gnu.tar.gz Contributing.md Design.md README.md -C target/x86_64-unknown-linux-gnu/release/rustfmt rustfmt
+
+deploy:
+ provider: releases
+ api_key:
+ secure: "your own encrypted key"
+ file:
+ - rustfmt-x86_64-unknown-linux-gnu.tar.gz
+ on:
+ repo: nrc/rustfmt
+ tags: true
+ condition: "$DEPLOY = LINUX"
+ skip_cleanup: true