[libxslt] Only run a few CI tests unless scheduled
- From: Nick Wellnhofer <nwellnhof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libxslt] Only run a few CI tests unless scheduled
- Date: Tue, 2 Mar 2021 14:13:58 +0000 (UTC)
commit dc48d414b24ec203dc84dd6bfd163621e26b0d67
Author: Nick Wellnhofer <wellnhofer aevum de>
Date: Tue Mar 2 14:22:42 2021 +0100
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
.gitlab-ci.yml | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b16e79e8..5df830be 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -26,6 +26,8 @@ gcc:
gcc:python3:
extends: .test
+ only:
+ - schedules
variables:
CONFIG: "--with-python=/usr/bin/python3"
CFLAGS: "-O2"
@@ -42,6 +44,8 @@ clang:asan:
clang:msan:
extends: .test
+ only:
+ - schedules
variables:
CONFIG: "--without-python --without-zlib --without-lzma --without-crypto"
CC: clang
@@ -73,6 +77,8 @@ clang:msan:
cmake:linux:gcc:shared:
extends: .cmake:linux
+ only:
+ - schedules
variables:
BUILD_SHARED_LIBS: "ON"
CC: gcc
@@ -80,6 +86,8 @@ cmake:linux:gcc:shared:
cmake:linux:gcc:static:
extends: .cmake:linux
+ only:
+ - schedules
variables:
BUILD_SHARED_LIBS: "OFF"
CC: gcc
@@ -87,6 +95,8 @@ cmake:linux:gcc:static:
cmake:linux:clang:shared:
extends: .cmake:linux
+ only:
+ - schedules
variables:
BUILD_SHARED_LIBS: "ON"
CC: clang
@@ -94,6 +104,8 @@ cmake:linux:clang:shared:
cmake:linux:clang:static:
extends: .cmake:linux
+ only:
+ - schedules
variables:
BUILD_SHARED_LIBS: "OFF"
CC: clang
@@ -143,6 +155,8 @@ cmake:linux:clang:static:
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:shared:
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:shared:
cmake:mingw:w64-x86_64:static:
extends: .cmake:mingw
+ only:
+ - schedules
variables:
BUILD_SHARED_LIBS: "OFF"
MINGW_PACKAGE_PREFIX: mingw-w64-x86_64
@@ -237,12 +255,16 @@ cmake:msvc:v141:x64:shared:
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
+ only:
+ - schedules
variables:
CMAKE_GENERATOR_PLATFORM: Win32
@@ -254,6 +276,8 @@ cmake:msvc:v141:x86:shared:
cmake:msvc:v141:x86:static:
extends: .cmake:msvc:v141:x86
+ only:
+ - schedules
variables:
BUILD_SHARED_LIBS: "OFF"
SUFFIX: static
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]