mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 11:32:46 +01:00
ci: use underscore to separate variant name from target triple
This commit is contained in:
parent
d0131a5259
commit
26cc5a1c90
@ -193,13 +193,13 @@ x86_64-w64-mingw32:
|
|||||||
variables:
|
variables:
|
||||||
HOST: x86_64-w64-mingw32
|
HOST: x86_64-w64-mingw32
|
||||||
|
|
||||||
x86_64-pc-linux-gnu-debug:
|
x86_64-pc-linux-gnu_debug:
|
||||||
extends: .build-depends-template
|
extends: .build-depends-template
|
||||||
variables:
|
variables:
|
||||||
HOST: x86_64-pc-linux-gnu
|
HOST: x86_64-pc-linux-gnu
|
||||||
DEP_OPTS: "DEBUG=1"
|
DEP_OPTS: "DEBUG=1"
|
||||||
|
|
||||||
x86_64-pc-linux-gnu-nowallet:
|
x86_64-pc-linux-gnu_nowallet:
|
||||||
extends:
|
extends:
|
||||||
- .build-depends-template
|
- .build-depends-template
|
||||||
- .skip-in-fast-mode-template
|
- .skip-in-fast-mode-template
|
||||||
@ -207,7 +207,7 @@ x86_64-pc-linux-gnu-nowallet:
|
|||||||
HOST: x86_64-pc-linux-gnu
|
HOST: x86_64-pc-linux-gnu
|
||||||
DEP_OPTS: "NO_WALLET=1"
|
DEP_OPTS: "NO_WALLET=1"
|
||||||
|
|
||||||
x86_64-pc-linux-gnu-multiprocess:
|
x86_64-pc-linux-gnu_multiprocess:
|
||||||
extends:
|
extends:
|
||||||
- .build-depends-template
|
- .build-depends-template
|
||||||
- .skip-in-fast-mode-template
|
- .skip-in-fast-mode-template
|
||||||
@ -243,7 +243,7 @@ win64-build:
|
|||||||
linux64-build:
|
linux64-build:
|
||||||
extends: .build-template
|
extends: .build-template
|
||||||
needs:
|
needs:
|
||||||
- x86_64-pc-linux-gnu-debug
|
- x86_64-pc-linux-gnu_debug
|
||||||
variables:
|
variables:
|
||||||
BUILD_TARGET: linux64
|
BUILD_TARGET: linux64
|
||||||
|
|
||||||
@ -252,7 +252,7 @@ linux64_cxx20-build:
|
|||||||
- .build-template
|
- .build-template
|
||||||
- .skip-in-fast-mode-template
|
- .skip-in-fast-mode-template
|
||||||
needs:
|
needs:
|
||||||
- x86_64-pc-linux-gnu-debug
|
- x86_64-pc-linux-gnu_debug
|
||||||
variables:
|
variables:
|
||||||
BUILD_TARGET: linux64_cxx20
|
BUILD_TARGET: linux64_cxx20
|
||||||
|
|
||||||
@ -261,7 +261,7 @@ linux64_sqlite-build:
|
|||||||
- .build-template
|
- .build-template
|
||||||
- .skip-in-fast-mode-template
|
- .skip-in-fast-mode-template
|
||||||
needs:
|
needs:
|
||||||
- x86_64-pc-linux-gnu-debug
|
- x86_64-pc-linux-gnu_debug
|
||||||
variables:
|
variables:
|
||||||
BUILD_TARGET: linux64_sqlite
|
BUILD_TARGET: linux64_sqlite
|
||||||
|
|
||||||
@ -270,7 +270,7 @@ linux64_fuzz-build:
|
|||||||
- .build-template
|
- .build-template
|
||||||
- .skip-in-fast-mode-template
|
- .skip-in-fast-mode-template
|
||||||
needs:
|
needs:
|
||||||
- x86_64-pc-linux-gnu-debug
|
- x86_64-pc-linux-gnu_debug
|
||||||
variables:
|
variables:
|
||||||
BUILD_TARGET: linux64_fuzz
|
BUILD_TARGET: linux64_fuzz
|
||||||
|
|
||||||
@ -279,7 +279,7 @@ linux64_fuzz-build:
|
|||||||
# - .build-template
|
# - .build-template
|
||||||
# - .skip-in-fast-mode-template
|
# - .skip-in-fast-mode-template
|
||||||
# needs:
|
# needs:
|
||||||
# - x86_64-pc-linux-gnu-debug
|
# - x86_64-pc-linux-gnu_debug
|
||||||
# variables:
|
# variables:
|
||||||
# BUILD_TARGET: linux64_asan
|
# BUILD_TARGET: linux64_asan
|
||||||
|
|
||||||
@ -288,7 +288,7 @@ linux64_tsan-build:
|
|||||||
- .build-template
|
- .build-template
|
||||||
- .skip-in-fast-mode-template
|
- .skip-in-fast-mode-template
|
||||||
needs:
|
needs:
|
||||||
- x86_64-pc-linux-gnu-debug
|
- x86_64-pc-linux-gnu_debug
|
||||||
variables:
|
variables:
|
||||||
BUILD_TARGET: linux64_tsan
|
BUILD_TARGET: linux64_tsan
|
||||||
|
|
||||||
@ -297,7 +297,7 @@ linux64_ubsan-build:
|
|||||||
- .build-template
|
- .build-template
|
||||||
- .skip-in-fast-mode-template
|
- .skip-in-fast-mode-template
|
||||||
needs:
|
needs:
|
||||||
- x86_64-pc-linux-gnu-debug
|
- x86_64-pc-linux-gnu_debug
|
||||||
variables:
|
variables:
|
||||||
BUILD_TARGET: linux64_ubsan
|
BUILD_TARGET: linux64_ubsan
|
||||||
|
|
||||||
@ -306,7 +306,7 @@ linux64_nowallet-build:
|
|||||||
- .build-template
|
- .build-template
|
||||||
- .skip-in-fast-mode-template
|
- .skip-in-fast-mode-template
|
||||||
needs:
|
needs:
|
||||||
- x86_64-pc-linux-gnu-nowallet
|
- x86_64-pc-linux-gnu_nowallet
|
||||||
variables:
|
variables:
|
||||||
BUILD_TARGET: linux64_nowallet
|
BUILD_TARGET: linux64_nowallet
|
||||||
|
|
||||||
@ -315,7 +315,7 @@ linux64_multiprocess-build:
|
|||||||
- .build-template
|
- .build-template
|
||||||
- .skip-in-fast-mode-template
|
- .skip-in-fast-mode-template
|
||||||
needs:
|
needs:
|
||||||
- x86_64-pc-linux-gnu-multiprocess
|
- x86_64-pc-linux-gnu_multiprocess
|
||||||
variables:
|
variables:
|
||||||
BUILD_TARGET: linux64_multiprocess
|
BUILD_TARGET: linux64_multiprocess
|
||||||
|
|
||||||
@ -324,7 +324,7 @@ linux64_multiprocess-build:
|
|||||||
# - .build-template
|
# - .build-template
|
||||||
# - .skip-in-fast-mode-template
|
# - .skip-in-fast-mode-template
|
||||||
# needs:
|
# needs:
|
||||||
# - x86_64-pc-linux-gnu-debug
|
# - x86_64-pc-linux-gnu_debug
|
||||||
# variables:
|
# variables:
|
||||||
# BUILD_TARGET: linux64_valgrind
|
# BUILD_TARGET: linux64_valgrind
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user