diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index afb0d2576..000000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: generic -sudo: required -install: - - curl https://sh.rustup.rs -sSf > rustup; chmod +x rustup; ./rustup --default-toolchain nightly -y - - export PATH="$HOME/.cargo/bin:$PATH"; ./setup.sh -script: export PATH="$HOME/.cargo/bin:$PATH"; ./ci.sh -notifications: - email: false diff --git a/README.md b/README.md index 423512a1e..1604f845c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # cookbook A collection of package recipes for Redox. -[![Travis Build Status](https://travis-ci.org/redox-os/cookbook.svg?branch=master)](https://travis-ci.org/redox-os/cookbook) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE) ## Setup diff --git a/setup.sh b/setup.sh index 9f30c1d75..bb8e5218e 100755 --- a/setup.sh +++ b/setup.sh @@ -1,9 +1,6 @@ #!/usr/bin/env bash set -e -echo "Downloading latest libc-artifacts" -git submodule update --init --remote libc-artifacts - echo "Downloading latest pkgutils" git submodule update --init --remote pkgutils cargo update --manifest-path pkgutils/Cargo.toml