From 61eba208cfe42aa11d40d29df90be9078a529655 Mon Sep 17 00:00:00 2001 From: Alex McArther Date: Mon, 30 Aug 2021 17:08:26 -0700 Subject: [PATCH] Delete .travis.yml This repo was migrated to buildkite ages ago, and Travis hasn't been functional for some time. --- .travis.yml | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 15b527aa3..000000000 --- a/.travis.yml +++ /dev/null @@ -1,43 +0,0 @@ -dist: trusty -sudo: required -language: rust -addons: - apt: - sources: - - george-edison55-precise-backports - packages: - - cmake-data - - cmake - -# Thanks, github.com/pubref/rules_protobuf! -# https://github.com/bazelbuild/bazel/issues/29#issuecomment-271428146 -before_install: - - OS=linux - - ARCH=x86_64 - - V="$(cat ./.bazelversion)" - - GH_BASE="https://github.com/bazelbuild/bazel/releases/download/$V" - - GH_ARTIFACT="bazel-$V-installer-$OS-$ARCH.sh" - - URL="$GH_BASE/$GH_ARTIFACT" - - echo $URL - - wget -O install.sh $URL - - chmod +x install.sh - - ./install.sh --user - - rm -f install.sh - -rust: - - stable -matrix: - allow_failures: - - rust: nightly - -script: - - bazel build //... && bazel test //... - # Check that /examples has no changes - - | - bazel run //tools:examples_raze - if [ -n "$(git status --porcelain)" ]; then - echo '/examples is out of date. Please rerun all tests and commit the changes generated from this command' >&2 - exit 1 - fi - # Run Buildifier as a linter step - - bazel run //:buildifier_check