From 097d56d9eaf615a0f3efc1f7fc506ead2f55d5ed Mon Sep 17 00:00:00 2001 From: Devan Carpenter Date: Tue, 7 Feb 2023 12:25:52 -0500 Subject: [PATCH] CI: add windows msbuild job --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9dd718f..38b545e 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 -- GitLab