diff options
author | Brad King <brad.king@kitware.com> | 2021-10-15 17:53:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-10-18 14:17:47 (GMT) |
commit | 14f2dbad03da68be00260b6bbde4fe7d465eb85c (patch) | |
tree | a240bf10af8d246c6a1b4cb960301c342183cfb9 /.gitlab/ci | |
parent | 94404e912efd08792f5b38adb1a994f6a432d269 (diff) | |
download | CMake-14f2dbad03da68be00260b6bbde4fe7d465eb85c.zip CMake-14f2dbad03da68be00260b6bbde4fe7d465eb85c.tar.gz CMake-14f2dbad03da68be00260b6bbde4fe7d465eb85c.tar.bz2 |
ci: Add Open Watcom 1.9 nightly CI job
Diffstat (limited to '.gitlab/ci')
-rw-r--r-- | .gitlab/ci/configure_windows_openwatcom1.9.cmake | 1 | ||||
-rw-r--r-- | .gitlab/ci/configure_windows_openwatcom_common.cmake | 2 | ||||
-rwxr-xr-x | .gitlab/ci/openwatcom.ps1 | 25 |
3 files changed, 28 insertions, 0 deletions
diff --git a/.gitlab/ci/configure_windows_openwatcom1.9.cmake b/.gitlab/ci/configure_windows_openwatcom1.9.cmake new file mode 100644 index 0000000..f29c3f4 --- /dev/null +++ b/.gitlab/ci/configure_windows_openwatcom1.9.cmake @@ -0,0 +1 @@ +include("${CMAKE_CURRENT_LIST_DIR}/configure_windows_openwatcom_common.cmake") diff --git a/.gitlab/ci/configure_windows_openwatcom_common.cmake b/.gitlab/ci/configure_windows_openwatcom_common.cmake new file mode 100644 index 0000000..6d66a05 --- /dev/null +++ b/.gitlab/ci/configure_windows_openwatcom_common.cmake @@ -0,0 +1,2 @@ +set(configure_no_sccache 1) +include("${CMAKE_CURRENT_LIST_DIR}/configure_external_test.cmake") diff --git a/.gitlab/ci/openwatcom.ps1 b/.gitlab/ci/openwatcom.ps1 new file mode 100755 index 0000000..4f1012c --- /dev/null +++ b/.gitlab/ci/openwatcom.ps1 @@ -0,0 +1,25 @@ +$erroractionpreference = "stop" + +if ("$env:CMAKE_CONFIGURATION".Contains("openwatcom1.9")) { + # Open Watcom 1.9 + # https://web.archive.org/web/20210312132437/http://www.openwatcom.org/download.php + $filename = "open-watcom-1.9-1" + $sha256sum = "FFE6F5BBA200912697C6EC26C4D3B2623A0358FBE7CBB23BD264CBF7D54E4988" +} else { + throw ('unknown CMAKE_CONFIGURATION: ' + "$env:CMAKE_CONFIGURATION") +} +$tarball = "$filename.zip" + +$outdir = $pwd.Path +$outdir = "$outdir\.gitlab" +$ProgressPreference = 'SilentlyContinue' +# This URL is only visible inside of Kitware's network. See above filename table. +Invoke-WebRequest -Uri "https://cmake.org/files/dependencies/internal/$tarball" -OutFile "$outdir\$tarball" +$hash = Get-FileHash "$outdir\$tarball" -Algorithm SHA256 +if ($hash.Hash -ne $sha256sum) { + exit 1 +} + +Add-Type -AssemblyName System.IO.Compression.FileSystem +[System.IO.Compression.ZipFile]::ExtractToDirectory("$outdir\$tarball", "$outdir") +Move-Item -Path "$outdir\$filename" -Destination "$outdir\watcom" |