|
@@ -72,6 +72,22 @@
|
|
|
variables:
|
|
variables:
|
|
|
CMAKE_CONFIGURATION: windows_borland5.8
|
|
CMAKE_CONFIGURATION: windows_borland5.8
|
|
|
|
|
|
|
|
|
|
+.windows_openwatcom:
|
|
|
|
|
+ extends: .windows
|
|
|
|
|
+
|
|
|
|
|
+ variables:
|
|
|
|
|
+ # Watcom does not support spaces in the path.
|
|
|
|
|
+ GIT_CLONE_PATH: "$CI_BUILDS_DIR\\cmake-ci-ext\\$CI_CONCURRENT_ID"
|
|
|
|
|
+ CMAKE_GENERATOR: "Watcom WMake"
|
|
|
|
|
+ CMAKE_CI_BUILD_TYPE: Release
|
|
|
|
|
+ CMAKE_CI_NIGHTLY_IGNORE_DEPS: "true"
|
|
|
|
|
+
|
|
|
|
|
+.windows_openwatcom1.9:
|
|
|
|
|
+ extends: .windows_openwatcom
|
|
|
|
|
+
|
|
|
|
|
+ variables:
|
|
|
|
|
+ CMAKE_CONFIGURATION: windows_openwatcom1.9
|
|
|
|
|
+
|
|
|
## Tags
|
|
## Tags
|
|
|
|
|
|
|
|
.windows_builder_tags:
|
|
.windows_builder_tags:
|
|
@@ -154,3 +170,17 @@
|
|
|
- build/install/bin/ctest --output-on-failure -V -S .gitlab/ci/ctest_test_external.cmake
|
|
- build/install/bin/ctest --output-on-failure -V -S .gitlab/ci/ctest_test_external.cmake
|
|
|
|
|
|
|
|
interruptible: true
|
|
interruptible: true
|
|
|
|
|
+
|
|
|
|
|
+.cmake_test_windows_openwatcom:
|
|
|
|
|
+ stage: test-ext
|
|
|
|
|
+
|
|
|
|
|
+ script:
|
|
|
|
|
+ - Invoke-Expression -Command .gitlab/ci/openwatcom.ps1
|
|
|
|
|
+ - $pwdpath = $pwd.Path
|
|
|
|
|
+ - Set-Item -Force -Path "env:PATH" -Value "$pwdpath\.gitlab\watcom\binnt;$pwdpath\.gitlab\watcom\binw;$env:PATH"
|
|
|
|
|
+ - Set-Item -Force -Path "env:INCLUDE" -Value "$pwdpath\.gitlab\watcom\h;$pwdpath\.gitlab\watcom\h\nt"
|
|
|
|
|
+ - Set-Item -Force -Path "env:EDPATH" -Value "$pwdpath\.gitlab\watcom\eddat"
|
|
|
|
|
+ - Set-Item -Force -Path "env:WATCOM" -Value "$pwdpath\.gitlab\watcom"
|
|
|
|
|
+ - build/install/bin/ctest --output-on-failure -V -S .gitlab/ci/ctest_test_external.cmake
|
|
|
|
|
+
|
|
|
|
|
+ interruptible: true
|