summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 11c8b32..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-dist: focal
-sudo: required
-language: cpp
-compiler: gcc
-os: linux
-
-addons:
- apt:
- packages:
- - cmake
- - g++
- - libgl1-mesa-dev
- - libglu1-mesa-dev
-
-matrix:
- include:
- - name: "Debug build"
- env: BUILD_TYPE=Debug
- - name: "Release build"
- env: BUILD_TYPE=RelWithDebInfo
-
-script:
- - mkdir build
- - cd build
- - cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DOPTICK_ENABLED=OFF
- - cmake --build .