From 5af2e4ae5e414060e79cfebb3e454b4bbca4cada Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sat, 13 May 2017 18:34:26 -0400 Subject: [PATCH] Build, test, and release on fewer os/arch combinations (#201) Build, test, and release for: - x86-64 MacOS - x86-64 Linux - x86-64 FreeBSD - x86-64 Windows --- .travis.yml | 56 ++++++++++++++++++++++++++-------------------------- appveyor.yml | 14 ++++++------- justfile | 2 +- 3 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.travis.yml b/.travis.yml index 86d2ae7..47bb113 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,17 +19,17 @@ matrix: # don't need include: # Linux - - env: TARGET=i686-unknown-linux-gnu - - env: TARGET=i686-unknown-linux-musl - - env: TARGET=x86_64-unknown-linux-gnu + #- env: TARGET=i686-unknown-linux-gnu + #- env: TARGET=i686-unknown-linux-musl + #- env: TARGET=x86_64-unknown-linux-gnu - env: TARGET=x86_64-unknown-linux-musl # OSX - - env: TARGET=i686-apple-darwin - os: osx - before_install: - - set -e - - brew install dash + #- env: TARGET=i686-apple-darwin + # os: osx + # before_install: + # - set -e + # - brew install dash - env: TARGET=x86_64-apple-darwin os: osx before_install: @@ -37,34 +37,34 @@ matrix: - brew install dash # *BSD - - env: TARGET=i686-unknown-freebsd DISABLE_TESTS=1 + #- env: TARGET=i686-unknown-freebsd DISABLE_TESTS=1 - env: TARGET=x86_64-unknown-freebsd DISABLE_TESTS=1 - - env: TARGET=x86_64-unknown-netbsd DISABLE_TESTS=1 + #- env: TARGET=x86_64-unknown-netbsd DISABLE_TESTS=1 # Other architectures - - env: TARGET=aarch64-unknown-linux-gnu - - env: TARGET=armv7-unknown-linux-gnueabihf - - env: TARGET=mips-unknown-linux-gnu - - env: TARGET=mips64-unknown-linux-gnuabi64 - - env: TARGET=mips64el-unknown-linux-gnuabi64 - - env: TARGET=mipsel-unknown-linux-gnu - - env: TARGET=powerpc64-unknown-linux-gnu - - env: TARGET=powerpc64le-unknown-linux-gnu - - env: TARGET=s390x-unknown-linux-gnu DISABLE_TESTS=1 + #- env: TARGET=aarch64-unknown-linux-gnu + #- env: TARGET=armv7-unknown-linux-gnueabihf + #- env: TARGET=mips-unknown-linux-gnu + #- env: TARGET=mips64-unknown-linux-gnuabi64 + #- env: TARGET=mips64el-unknown-linux-gnuabi64 + #- env: TARGET=mipsel-unknown-linux-gnu + #- env: TARGET=powerpc64-unknown-linux-gnu + #- env: TARGET=powerpc64le-unknown-linux-gnu + #- env: TARGET=s390x-unknown-linux-gnu DISABLE_TESTS=1 # powerpc-unknown-linux-gnu is currently failing some # tests with 'Unsupported syscall: 384' - - env: TARGET=powerpc-unknown-linux-gnu DISABLE_TESTS=1 + #- env: TARGET=powerpc-unknown-linux-gnu DISABLE_TESTS=1 # Testing other channels - - env: TARGET=x86_64-unknown-linux-gnu - rust: nightly - - env: TARGET=x86_64-apple-darwin - os: osx - rust: nightly - before_install: - - set -e - - brew install dash + #- env: TARGET=x86_64-unknown-linux-gnu + # rust: nightly + #- env: TARGET=x86_64-apple-darwin + # os: osx + # rust: nightly + # before_install: + # - set -e + # - brew install dash before_install: set -e diff --git a/appveyor.yml b/appveyor.yml index e338f44..30ccd64 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,18 +17,18 @@ environment: # don't need matrix: # MinGW - - TARGET: i686-pc-windows-gnu - - TARGET: x86_64-pc-windows-gnu + #- TARGET: i686-pc-windows-gnu + #- TARGET: x86_64-pc-windows-gnu # MSVC - - TARGET: i686-pc-windows-msvc + #- TARGET: i686-pc-windows-msvc - TARGET: x86_64-pc-windows-msvc # Testing other channels - - TARGET: x86_64-pc-windows-gnu - RUST_VERSION: nightly - - TARGET: x86_64-pc-windows-msvc - RUST_VERSION: nightly + #- TARGET: x86_64-pc-windows-gnu + # RUST_VERSION: nightly + #- TARGET: x86_64-pc-windows-msvc + # RUST_VERSION: nightly install: - ps: >- diff --git a/justfile b/justfile index 864da5b..fb3594f 100644 --- a/justfile +++ b/justfile @@ -134,7 +134,7 @@ quine-text = ' " char *s = %c%s%c;" " printf(s, 34, s, 34);" " return 0;" - "}"; + "}"; printf(s, 34, s, 34); return 0; }