From b70acdda1f1987d7dc5e6f01aa3932eac93ae863 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Fri, 1 Oct 2021 16:02:49 -0400 Subject: [PATCH] test: remove travis config (#1082) Remove travis config as we no longer use travis for testing. --- .travis.yml | 58 ----------------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a9fe10a33..000000000 --- a/.travis.yml +++ /dev/null @@ -1,58 +0,0 @@ -language: c++ -compiler: - - clang - - gcc -# For Linux, use an Ubuntu 14 image -dist: trusty -os: - - linux - - osx -env: - global: - # https://github.com/jasongin/nvs/blob/HEAD/doc/CI.md - - NVS_VERSION=1.4.2 - matrix: - - NODEJS_VERSION=node/10 - - NODEJS_VERSION=node/12 - - NODEJS_VERSION=node/14 - - NODEJS_VERSION=nightly -matrix: - fast_finish: true - allow_failures: - - env: NODEJS_VERSION=nightly -cache: - directories: - - node_modules - - $HOME/.npm -addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-4.9 -before_install: - # coveralls - - pip2 install --user cpp-coveralls - # compilers - - if [ "$CXX" = "g++" -a "$TRAVIS_OS_NAME" = "linux" ]; then export CXX="g++-4.9" CC="gcc-4.9" AR="gcc-ar-4.9" RANLIB="gcc-ranlib-4.9" NM="gcc-nm-4.9" ; fi - - if [ "$CXX" = "clang++" ]; then export NPMOPT=--clang=1 ; fi - - export CFLAGS="$CFLAGS -O3 --coverage" LDFLAGS="$LDFLAGS --coverage" - - echo "CFLAGS=\"$CFLAGS\" LDFLAGS=\"$LDFLAGS\"" - # nvs - - git clone --branch v$NVS_VERSION --depth 1 https://github.com/jasongin/nvs ~/.nvs - - . ~/.nvs/nvs.sh - - nvs --version - # node.js - - nvs add $NODEJS_VERSION - - nvs use $NODEJS_VERSION - - node --version - - npm --version -install: - - npm install $NPMOPT -script: - # Travis CI sets NVM_NODEJS_ORG_MIRROR, but it makes node-gyp fail to download headers for nightly builds. - - unset NVM_NODEJS_ORG_MIRROR - - - npm test -after_success: - - cpp-coveralls --gcov-options '\-lp' --build-root test/build --exclude test