summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index da0b4ac..7bf1275 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,6 +2,7 @@ image: registry.gitlab.gnome.org/gnome/glib-networking/master:v8
fedora-x86_64:
tags: [ privileged ]
+ stage: build
script:
# Sadly, GCC 9's LeakSanitizer is quite crashy, #86.
# So we will run our tests under asan only once.
@@ -31,3 +32,16 @@ fedora-x86_64:
paths:
- build/test-results
when: on_failure
+
+vs2017-x64:
+ stage: build
+ except:
+ - tags
+ tags:
+ - win32
+ script:
+ - .gitlab-ci/test-msvc.bat
+ artifacts:
+ paths:
+ - build/test-results
+ when: on_failure