diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9dd718fd296467edbb6a9382989f2fc0d2b3f887..38b545e8732f22f5ba88580228ed1915a521513c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -196,6 +196,28 @@ windows-msvc-nmakefile: variables: CFLAGS: "" # Silence some C warnings when compiling with MSVC +windows-msvc-msbuild: + tags: + - win + - win2019 + stage: build + image: registry.gitlab.com/sequoia-pgp/build-docker-image/windows-msvc + before_script: + # We don't call *before_script_start or *before_script_end as we + # don't have bash, clang, etc. + - rustup default "1.60.0" + - rustup show active-toolchain + - rustc --version --verbose + - cargo --version + - msbuild /version + script: + - cd build-win64 + - ls + - msbuild /p:configure=debug /p:platform=x64 + after_script: [] + variables: + CFLAGS: "" # Silence some C warnings when compiling with MSVC + windows-msvc32-cng: tags: - win