@@ -43,7 +43,10 @@ builder-image:
4343 image : $CI_REGISTRY_IMAGE:builder-$CI_COMMIT_REF_SLUG
4444 before_script :
4545 - |
46- echo HOST=${HOST}
46+ echo BUILD_TARGET="${BUILD_TARGET}"
47+ source ./ci/dash/matrix.sh
48+ echo HOST="${HOST}"
49+ echo DEP_OPTS="${DEP_OPTS}"
4750 if [[ "${HOST}" == "x86_64-apple-darwin" ]]; then
4851 ./contrib/containers/guix/scripts/setup-sdk
4952 fi
@@ -73,6 +76,8 @@ builder-image:
7376 - export CACHE_DIR=$CI_PROJECT_DIR/cache
7477 - echo BUILD_TARGET=$BUILD_TARGET
7578 - source ./ci/dash/matrix.sh
79+ - echo HOST=${HOST}
80+ - echo DEP_OPTS=${DEP_OPTS}
7681
7782 # Setup some environment variables
7883 - |
@@ -170,43 +175,40 @@ builder-image:
170175arm-linux-gnueabihf :
171176 extends : .build-depends-template
172177 variables :
173- HOST : arm-linux-gnueabihf
178+ BUILD_TARGET : arm-linux
174179
175180x86_64-w64-mingw32 :
176181 extends :
177182 - .build-depends-template
178183 - .skip-in-fast-mode-template
179184 variables :
180- HOST : x86_64-w64-mingw32
185+ BUILD_TARGET : win64
181186
182187x86_64-pc-linux-gnu_debug :
183188 extends : .build-depends-template
184189 variables :
185- HOST : x86_64-pc-linux-gnu
186- DEP_OPTS : " DEBUG=1"
190+ BUILD_TARGET : linux64
187191
188192x86_64-pc-linux-gnu_nowallet :
189193 extends :
190194 - .build-depends-template
191195 - .skip-in-fast-mode-template
192196 variables :
193- HOST : x86_64-pc-linux-gnu
194- DEP_OPTS : " NO_WALLET=1"
197+ BUILD_TARGET : linux64_nowallet
195198
196199x86_64-pc-linux-gnu_multiprocess :
197200 extends :
198201 - .build-depends-template
199202 - .skip-in-fast-mode-template
200203 variables :
201- HOST : x86_64-pc-linux-gnu
202- DEP_OPTS : " DEBUG=1 MULTIPROCESS=1"
204+ BUILD_TARGET : linux64_multiprocess
203205
204206x86_64-apple-darwin :
205207 extends :
206208 - .build-depends-template
207209 - .skip-in-fast-mode-template
208210 variables :
209- HOST : x86_64-apple-darwin
211+ BUILD_TARGET : mac
210212
211213# ##
212214
0 commit comments