From fdc319e398a651550bb802ea1be1c909ae67adfc Mon Sep 17 00:00:00 2001 From: Rahix Date: Wed, 5 Aug 2020 18:35:11 +0200 Subject: [PATCH] ci: Get rid of matrix build Instead of a matrix build just build a single time with all features enabled. Signed-off-by: Rahix --- .travis.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 785cf80..7cb7b01 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,6 @@ rust: cache: - cargo - - directories: - - $TRAVIS_BUILD_DIR/atdf2svd/ addons: apt: @@ -13,18 +11,6 @@ addons: - python3-pip - python3-dev -env: - matrix: - - CHIP=atmega1280 - - CHIP=atmega8 - - CHIP=atmega328p - - CHIP=atmega32u4 - - CHIP=attiny85 - # Check building all at once - - CHIP=atmega1280,atmega8,atmega328p,atmega32u4,attiny85 - # Check building rt - - CHIP=atmega32u4,attiny85,rt - install: - rustup component add rustfmt - cargo install form || true @@ -34,5 +20,4 @@ install: script: - make RUSTUP_TOOLCHAIN=nightly-2020-07-12 - - echo $CHIP - - cargo build --features $CHIP + - cargo build --all-features -- 2.48.1