diff options
author | Brad King <brad.king@kitware.com> | 2022-09-09 19:18:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-09-12 16:45:45 (GMT) |
commit | de32c8ddbe0766fe534e4af20f801b7fd8f72e14 (patch) | |
tree | c21d333846922cb35284ee08bea3d9f52174074b | |
parent | 906b1a0bc4b8cb04e9eb879c26a4a5e3a7297fc9 (diff) | |
download | CMake-de32c8ddbe0766fe534e4af20f801b7fd8f72e14.zip CMake-de32c8ddbe0766fe534e4af20f801b7fd8f72e14.tar.gz CMake-de32c8ddbe0766fe534e4af20f801b7fd8f72e14.tar.bz2 |
ci: start every windows job with custom environment script
-rw-r--r-- | .gitlab/os-windows.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitlab/os-windows.yml b/.gitlab/os-windows.yml index 92538a1..b4aa0eb 100644 --- a/.gitlab/os-windows.yml +++ b/.gitlab/os-windows.yml @@ -361,6 +361,7 @@ stage: test-ext script: + - . .gitlab/ci/env.ps1 - Invoke-Expression -Command .gitlab/ci/vcvarsall.ps1 - build/install/bin/ctest --output-on-failure -V -S .gitlab/ci/ctest_standalone.cmake @@ -370,6 +371,7 @@ stage: test-ext script: + - . .gitlab/ci/env.ps1 - Invoke-Expression -Command .gitlab/ci/jom.ps1 - $pwdpath = $pwd.Path - Set-Item -Force -Path "env:PATH" -Value "$pwdpath\.gitlab\jom;$env:PATH" @@ -382,6 +384,7 @@ stage: test-ext script: + - . .gitlab/ci/env.ps1 - Invoke-Expression -Command .gitlab/ci/borland.ps1 - $pwdpath = $pwd.Path - Set-Item -Force -Path "env:PATH" -Value "$pwdpath\.gitlab\bcc\bin;$env:PATH" @@ -393,6 +396,7 @@ stage: test-ext script: + - . .gitlab/ci/env.ps1 - $pwdpath = $pwd.Path - powershell -File ".gitlab/ci/ninja.ps1" - Set-Item -Force -Path "env:PATH" -Value "$pwdpath\.gitlab;$env:PATH" @@ -407,6 +411,7 @@ stage: test-ext script: + - . .gitlab/ci/env.ps1 - Invoke-Expression -Command .gitlab/ci/msvc.ps1 - Invoke-Expression -Command .gitlab/ci/vcvarsall.ps1 - build/install/bin/ctest --output-on-failure -V -S .gitlab/ci/ctest_standalone.cmake @@ -417,6 +422,7 @@ stage: test-ext script: + - . .gitlab/ci/env.ps1 - 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" |