diff options
| author | Henrik Tjäder <henrik@tjaders.com> | 2020-11-16 22:36:01 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2020-11-16 22:36:01 +0100 |
| commit | e6790f981f490170cd408962a4c505a40be13380 (patch) | |
| tree | fc589ebc5c8645f3e4aae2413b5d65753a79269c /ci/install.sh | |
| parent | 53b2454799830cd424bf8b293e2106249bf0b4d5 (diff) | |
Remove the rest of Travis CI
Diffstat (limited to 'ci/install.sh')
| -rw-r--r-- | ci/install.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/ci/install.sh b/ci/install.sh deleted file mode 100644 index 624efd8..0000000 --- a/ci/install.sh +++ /dev/null @@ -1,34 +0,0 @@ -set -euxo pipefail - -install_crate() { - local pkg=$1 vers=$2 - - cargo install --list | grep "$pkg v$vers" || ( cd .. && cargo install -f --vers $vers $pkg ) -} - -main() { - # these are not needed for doc builds - if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_PULL_REQUEST != false ]; then - if [ $TARGET = x86_64-unknown-linux-gnu ]; then - install_crate microamp-tools 0.1.0-alpha.3 - rustup target add thumbv6m-none-eabi thumbv7m-none-eabi - fi - - rustup target add $TARGET - mkdir qemu - curl -L https://github.com/japaric/qemu-bin/raw/master/14.04/qemu-system-arm-2.12.0 > qemu/qemu-system-arm - chmod +x qemu/qemu-system-arm - - pip install linkchecker --user - fi - - # Download binary mdbook and add to path - curl -L https://github.com/rust-lang/mdBook/releases/download/v0.3.1/mdbook-v0.3.1-x86_64-unknown-linux-gnu.tar.gz > mdbook.tar.gz - tar -xf mdbook.tar.gz - mkdir -p mdbook-bin - mv mdbook mdbook-bin/ - - #install_crate mdbook 0.3.1 -} - -main |
