summaryrefslogtreecommitdiffstats
path: root/.gitlab/os-windows.yml
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-10-13 16:44:52 (GMT)
committerBrad King <brad.king@kitware.com>2021-10-13 17:59:30 (GMT)
commit45d02c9fdc67aeace5d164de54285052b067a5da (patch)
tree4731f79c7ab6b2ec6eb1ec604e0952089c3349a3 /.gitlab/os-windows.yml
parentdde674122e711987e2e9f320271074962bb157b9 (diff)
downloadCMake-45d02c9fdc67aeace5d164de54285052b067a5da.zip
CMake-45d02c9fdc67aeace5d164de54285052b067a5da.tar.gz
CMake-45d02c9fdc67aeace5d164de54285052b067a5da.tar.bz2
ci: Add Borland 5.5 and 5.8 nightly CI jobs
Diffstat (limited to '.gitlab/os-windows.yml')
-rw-r--r--.gitlab/os-windows.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.gitlab/os-windows.yml b/.gitlab/os-windows.yml
index 8037b33..61aa501 100644
--- a/.gitlab/os-windows.yml
+++ b/.gitlab/os-windows.yml
@@ -52,6 +52,26 @@
CMAKE_GENERATOR_TOOLSET: "v142,version=14.29.30133"
CMAKE_CI_NIGHTLY_IGNORE_DEPS: "true"
+.windows_borland:
+ extends: .windows
+
+ variables:
+ CMAKE_GENERATOR: "Borland Makefiles"
+ CMAKE_CI_BUILD_TYPE: Release
+ CMAKE_CI_NIGHTLY_IGNORE_DEPS: "true"
+
+.windows_borland5.5:
+ extends: .windows_borland
+
+ variables:
+ CMAKE_CONFIGURATION: windows_borland5.5
+
+.windows_borland5.8:
+ extends: .windows_borland
+
+ variables:
+ CMAKE_CONFIGURATION: windows_borland5.8
+
## Tags
.windows_builder_tags:
@@ -123,3 +143,14 @@
- build/install/bin/ctest --output-on-failure -V -S .gitlab/ci/ctest_test_external.cmake
interruptible: true
+
+.cmake_test_windows_borland:
+ stage: test-ext
+
+ script:
+ - Invoke-Expression -Command .gitlab/ci/borland.ps1
+ - $pwdpath = $pwd.Path
+ - Set-Item -Force -Path "env:PATH" -Value "$pwdpath\.gitlab\bcc\bin;$env:PATH"
+ - build/install/bin/ctest --output-on-failure -V -S .gitlab/ci/ctest_test_external.cmake
+
+ interruptible: true