Jonathan Maw pushed to branch jonathan/wsl-tests at BuildStream / buildstream
Commits:
-
e4138940
by Jonathan Maw at 2019-01-09T17:53:51Z
2 changed files:
Changes:
... | ... | @@ -127,6 +127,20 @@ lint: |
127 | 127 |
except:
|
128 | 128 |
- schedules
|
129 | 129 |
|
130 |
+tests-wsl:
|
|
131 |
+ stage: test
|
|
132 |
+ variables:
|
|
133 |
+ LC_ALL: C.UTF-8
|
|
134 |
+ LANG: C.UTF-8
|
|
135 |
+ tags:
|
|
136 |
+ - wsl
|
|
137 |
+ before_script:
|
|
138 |
+ - mount
|
|
139 |
+ - df -h
|
|
140 |
+ |
|
141 |
+ script:
|
|
142 |
+ - tox
|
|
143 |
+ |
|
130 | 144 |
# Automatically build documentation for every commit, we want to know
|
131 | 145 |
# if building documentation fails even if we're not deploying it.
|
132 | 146 |
docs:
|
... | ... | @@ -57,6 +57,7 @@ def generate_file_types(path): |
57 | 57 |
clean()
|
58 | 58 |
|
59 | 59 |
s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
60 |
+ print("*** Binding unix socket to {}".format(path))
|
|
60 | 61 |
s.bind(path)
|
61 | 62 |
yield
|
62 | 63 |
clean()
|