summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Maw <jonathan.maw@codethink.co.uk>2019-01-08 16:01:52 +0000
committerJonathan Maw <jonathan.maw@codethink.co.uk>2019-02-06 10:32:05 +0000
commitf17ea6a68d798e6b2c5cfe1674755bbfc6a89e0b (patch)
tree653ad80eab8b0c5898ec2511f86df10049ebca74
parent0e47114402511680420156c066f6861d1b30a7f4 (diff)
downloadbuildstream-f17ea6a68d798e6b2c5cfe1674755bbfc6a89e0b.tar.gz
gitlab-ci: Add commands to be run by WSL runners
-rw-r--r--.gitlab-ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9a3de5154..c6b7ddcee 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -157,6 +157,20 @@ lint:
except:
- schedules
+tests-wsl:
+ stage: test
+ variables:
+ LC_ALL: C.UTF-8
+ LANG: C.UTF-8
+ tags:
+ - wsl
+ before_script:
+ - mount
+ - df -h
+
+ script:
+ - "${TEST_COMMAND}"
+
# Automatically build documentation for every commit, we want to know
# if building documentation fails even if we're not deploying it.
docs: