File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ workflow:
5
5
when : never
6
6
- when : always
7
7
8
- default :
9
- interruptible : true
10
-
11
8
variables :
12
9
GIT_SUBMODULE_STRATEGY : recursive
13
10
GH_PROJECT_PATH : " MatrixAI/${CI_PROJECT_NAME}"
@@ -22,6 +19,13 @@ variables:
22
19
# Homebrew cache only used by macos runner
23
20
HOMEBREW_CACHE : " ${CI_PROJECT_DIR}/tmp/Homebrew"
24
21
22
+ default :
23
+ interruptible : true
24
+ before_script :
25
+ # Replace this in windows runners that use powershell
26
+ # with `mkdir -Force "$CI_PROJECT_DIR/tmp"`
27
+ - mkdir -p "$CI_PROJECT_DIR/tmp"
28
+
25
29
# Cached directories shared between jobs & pipelines per-branch per-runner
26
30
cache :
27
31
key : $CI_COMMIT_REF_SLUG
@@ -156,6 +160,7 @@ build:windows:
156
160
npm_config_devdir : " ${CI_PROJECT_DIR}/tmp/node-gyp"
157
161
npm_config_nodedir : " ${CI_PROJECT_DIR}/tmp/node-gyp/$npm_config_target"
158
162
before_script :
163
+ - mkdir -Force "$CI_PROJECT_DIR/tmp"
159
164
- choco install nodejs --version="$npm_config_target" -y
160
165
- choco install python --version=3.9.12 -y
161
166
- refreshenv
You can’t perform that action at this time.
0 commit comments