From b371feac05ecaa3c718ad0ab4c9c120e07aebd6c Mon Sep 17 00:00:00 2001 From: Ilya Epifanov Date: Fri, 2 Mar 2018 01:29:43 +0100 Subject: [PATCH] Set up ci --- .travis.yml | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++ ci/install.sh | 21 ++++++++++++++++++++ ci/script.sh | 16 ++++++++++++++++ 3 files changed, 90 insertions(+) create mode 100644 .travis.yml create mode 100644 ci/install.sh create mode 100644 ci/script.sh diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1763005 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,53 @@ +# Based on the "trust" template v0.1.2 +# https://github.com/japaric/trust/tree/v0.1.2 + +language: rust +services: docker + +matrix: + include: + # Linux + - env: TARGET=x86_64-unknown-linux-gnu + rust: nightly + + # Bare metal + - env: TARGET=thumbv6m-none-eabi + rust: nightly + - env: TARGET=thumbv7m-none-eabi + rust: nightly + - env: TARGET=thumbv7em-none-eabi + rust: nightly + - env: TARGET=thumbv7em-none-eabihf + rust: nightly + +before_install: + - set -e + - rustup self update + +install: + - sh ci/install.sh + - source ~/.cargo/env || true + +script: + - bash ci/script.sh + +after_script: set +e + +cache: + cargo: true + directories: + - $HOME/.xargo + +before_cache: + # Travis can't cache files that are not readable by "others" + - chmod -R a+r $HOME/.cargo + +branches: + only: + - auto + - master + - try + +notifications: + email: +on_success: never diff --git a/ci/install.sh b/ci/install.sh new file mode 100644 index 0000000..4892d1a --- /dev/null +++ b/ci/install.sh @@ -0,0 +1,21 @@ +set -ex + +main() { + # This fetches latest stable release of Xargo + local tag=$(git ls-remote --tags --refs --exit-code https://github.com/japaric/xargo \ + | cut -d/ -f3 \ + | grep -E '^v[0.1.0-9.]+$' \ + | sort --version-sort \ + | tail -n1) + + curl -LSfs https://japaric.github.io/trust/install.sh | \ + sh -s -- \ + --force \ + --git japaric/xargo \ + --tag $tag \ + --target x86_64-unknown-linux-musl + + rustup component add rust-src +} + +main diff --git a/ci/script.sh b/ci/script.sh new file mode 100644 index 0000000..f6bca6f --- /dev/null +++ b/ci/script.sh @@ -0,0 +1,16 @@ +# This script takes care of testing your crate + +set -euxo pipefail + +main() { + case $TARGET in + x86_64-unknown-linux-gnu) + cargo check --target $TARGET + ;; + *) + xargo check --target $TARGET + ;; + esac +} + +main