From 4e48464bb3708968e1f15455cc2a11ae3acec3fe Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Thu, 17 Jun 2021 08:31:29 +0000 Subject: Move More CI into Jenkins - Travis Migration Progress (#5241) * Add build stage to Jenkinsfile * Run travisbuild in bash rather than sh * Add GCC/Clang differentiation * Use different working directory for each build type. * Correct directory name * Remove travis config file * Always clean workspace afterwards --- .travis.yml | 78 ------------------------------------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 6c2dfc2e2..000000000 --- a/.travis.yml +++ /dev/null @@ -1,78 +0,0 @@ -language: cpp -cache: - ccache: true - directories: - # Store ctest cost data - - Testing - -# Use Linux by default -os: linux -dist: bionic - -# Install newer SeeMake on Linux -addons: - snaps: - - name: cmake - confinement: classic - channel: latest - -jobs: - include: - # ARM workers are the slowest. Having these first in the build matrix makes travis faster overall. - - name: "Clang 10.0 - Debug" - arch: arm64 - compiler: clang - dist: focal # For Clang 10, bionic is Clang 6 for some reason. - before_install: &use-cmake - - export PATH=/snap/bin/:${PATH} - env: *Debug - - - name: "AppleClang - Debug" - os: osx - osx_image: xcode11.3 - before_install: - - HOMEBREW_NO_AUTO_UPDATE=1 brew install ccache - env: &Debug - - TRAVIS_CUBERITE_BUILD_TYPE=Debug - - - name: "Clang 7.0 - Release" - compiler: clang - before_install: *use-cmake - env: *Release - - - name: "Clang 7.0 - Debug" - compiler: clang - before_install: *use-cmake - env: *Debug - - - name: "GCC 7.5 - Release, CMake 3.13, No Unity" - compiler: gcc - before_install: - - wget --output-document=${HOME}/CMake http://cmake.org/files/v3.13/cmake-3.13.0-Linux-x86_64.tar.gz - - tar --extract --one-top-level=${HOME}/SeeMake --strip-components 1 --file ${HOME}/CMake - - export PATH=${HOME}/SeeMake/bin/:${PATH} - env: - - TRAVIS_CUBERITE_BUILD_TYPE=Release - - TRAVIS_CUBERITE_UNITY_BUILDS=No - - - name: "GCC 7.5 - Debug" - compiler: gcc - before_install: *use-cmake - env: *Debug - -# Do not let CMake find ccache wrappers -# we use CMAKE_CXX_COMPILER_LAUNCHER for ccache support -before_script: - - export PATH=$(echo "$PATH" | sed -e 's/:\/usr\/lib\/ccache//') - -# Run the build and tests -script: ./travisbuild.sh - -notifications: - email: - on_success: change - on_failure: always - -branches: - only: - - master -- cgit v1.2.3