Skip to content
Snippets Groups Projects
Commit 97d750895edd authored by Nick Wellnhofer's avatar Nick Wellnhofer
Browse files

Only run a few CI tests unless scheduled

Only run the following tests by default

- gcc
- clang:asan
- cmake:mingw:w64-x86_64:shared
- cmake:msvc:v141:x64:shared
parent 09d9c8f78fe9
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,8 @@
gcc:python3:
extends: .test
only:
- schedules
variables:
CONFIG: "--with-python=/usr/bin/python3"
CFLAGS: "-O2"
......@@ -42,6 +44,8 @@
clang:msan:
extends: .test
only:
- schedules
variables:
CONFIG: "--without-python --without-zlib --without-lzma --without-crypto"
CC: clang
......@@ -73,6 +77,8 @@
cmake:linux:gcc:shared:
extends: .cmake:linux
only:
- schedules
variables:
BUILD_SHARED_LIBS: "ON"
CC: gcc
......@@ -80,6 +86,8 @@
cmake:linux:gcc:static:
extends: .cmake:linux
only:
- schedules
variables:
BUILD_SHARED_LIBS: "OFF"
CC: gcc
......@@ -87,6 +95,8 @@
cmake:linux:clang:shared:
extends: .cmake:linux
only:
- schedules
variables:
BUILD_SHARED_LIBS: "ON"
CC: clang
......@@ -94,6 +104,8 @@
cmake:linux:clang:static:
extends: .cmake:linux
only:
- schedules
variables:
BUILD_SHARED_LIBS: "OFF"
CC: clang
......@@ -143,6 +155,8 @@
cmake:mingw:w64-i686:shared:
extends: .cmake:mingw
only:
- schedules
variables:
BUILD_SHARED_LIBS: "ON"
MINGW_PACKAGE_PREFIX: mingw-w64-i686
......@@ -151,6 +165,8 @@
cmake:mingw:w64-i686:static:
extends: .cmake:mingw
only:
- schedules
variables:
BUILD_SHARED_LIBS: "OFF"
MINGW_PACKAGE_PREFIX: mingw-w64-i686
......@@ -167,6 +183,8 @@
cmake:mingw:w64-x86_64:static:
extends: .cmake:mingw
only:
- schedules
variables:
BUILD_SHARED_LIBS: "OFF"
MINGW_PACKAGE_PREFIX: mingw-w64-x86_64
......@@ -237,9 +255,11 @@
cmake:msvc:v141:x64:static:
extends: .cmake:msvc:v141:x64
only:
- schedules
variables:
BUILD_SHARED_LIBS: "OFF"
SUFFIX: static
.cmake:msvc:v141:x86:
extends: .cmake:msvc:v141
......@@ -240,9 +260,11 @@
variables:
BUILD_SHARED_LIBS: "OFF"
SUFFIX: static
.cmake:msvc:v141:x86:
extends: .cmake:msvc:v141
only:
- schedules
variables:
CMAKE_GENERATOR_PLATFORM: Win32
......@@ -254,6 +276,8 @@
cmake:msvc:v141:x86:static:
extends: .cmake:msvc:v141:x86
only:
- schedules
variables:
BUILD_SHARED_LIBS: "OFF"
SUFFIX: static
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment