...@@ -196,6 +196,28 @@ windows-msvc-nmakefile: ...@@ -196,6 +196,28 @@ windows-msvc-nmakefile:
variables: variables:
CFLAGS: "" # Silence some C warnings when compiling with MSVC 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: windows-msvc32-cng:
tags: tags:
- win - win
......