summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Wiesner <sebastian@swsnr.de>2019-09-15 10:31:45 +0200
committerSebastian Wiesner <sebastian@swsnr.de>2019-09-15 10:39:29 +0200
commitbf99158dbe00dee4b2b416e1728b5879fe87b4d4 (patch)
treea5b221e04010d01c6d093b16ce16576499be7eb7
parentf42c1be11e0db8b65dc6861e9af86286f6e067bb (diff)
Remove Travis config replaced by actions
-rw-r--r--.travis.yml76
1 files changed, 0 insertions, 76 deletions
diff --git a/.travis.yml b/.travis.yml
index f99faa0..8c48da1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,82 +30,6 @@ stages:
- release
jobs:
include:
- # Check formatting on rust stable before anything else
- - name: check rustfmt
- stage: formatting
- os: linux
- rust: stable
- before_script: rustup component add rustfmt
- script: cargo fmt -- --check
-
- # Our target Rust version. We test:
- #
- # - A standard linux build
- # - --no-default-features to make sure things build in other configurations
- # - A static musl build
- # - macOS
- # - Windows
- - name: linux (all features)
- stage: test
- os: linux
- rust: stable
- env:
- - CARGOTARGET=x86_64-unknown-linux-gnu
- - name: linux (musl, only terminology)
- stage: test
- os: linux
- rust: stable
- env:
- - CARGOTARGET=x86_64-unknown-linux-musl
- - CARGOFLAGS='--no-default-features --features terminology'
- before_script: rustup target add x86_64-unknown-linux-musl
- - name: macOS (only iterm2)
- stage: test
- os: osx
- rust: stable
- before_script:
- # Add local Python scripts to path for ansi2html
- - export PATH="$HOME/Library/Python/2.7/bin:$PATH"
- env:
- - CARGOTARGET=x86_64-apple-darwin
- - CARGOFLAGS='--no-default-features --features iterm2,remote_resources'
- - name: windows (no features)
- stage: test
- os: windows
- rust: stable
- # Don't install ansi2html on Travis CI: Python isn’t readily available on
- # Windows, so skip these tests
- before_install: ''
- env:
- - CARGOTARGET=x86_64-pc-windows-msvc
- - CARGOFLAGS='--no-default-features'
- # Catch regressions in beta and nightly
- - name: rust beta (all features)
- stage: test
- os: linux
- rust: beta
- env:
- - CARGOTARGET=x86_64-unknown-linux-gnu
- - name: rust nightly (all features)
- stage: test
- os: linux
- rust: nightly
- env:
- - CARGOTARGET=x86_64-unknown-linux-gnu
-
- # Run clippy after testing, with and without features.
- - &lint-settings
- name: clippy (all features)
- stage: lint
- os: linux
- rust: stable
- before_script: rustup component add clippy
- script: cargo clippy --all-targets $CARGOFLAGS
- - <<: *lint-settings
- name: clippy (no features)
- env:
- - CARGOFLAGS=--no-default-features
-
# Deploy binary to GitHub
- &deploy-settings
name: Linux binary (static with musl, only terminology)