From 7ecca561a682fb85b802393030d812444e75bc60 Mon Sep 17 00:00:00 2001 From: Devan Carpenter Date: Mon, 6 Feb 2023 12:19:49 -0500 Subject: [PATCH] CI: add windows nmake job --- .gitlab-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a1224ee..9dd718f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -177,6 +177,25 @@ windows-msvc-cng: variables: CFLAGS: "" # Silence some C warnings when compiling with MSVC +windows-msvc-nmakefile: + 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 + script: + - nmake /F NMakefile + after_script: [] + variables: + CFLAGS: "" # Silence some C warnings when compiling with MSVC + windows-msvc32-cng: tags: - win -- GitLab