Skip to content

Commit c9708b7

Browse files
committed
ci: drop DEBUG=1 to try and avoid exhausting Actions runner storage
1 parent 68ddcdb commit c9708b7

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
container-path: ${{ needs.container.outputs.path }}
2727

2828
depends-linux64:
29-
name: x86_64-pc-linux-gnu_debug
29+
name: x86_64-pc-linux-gnu
3030
uses: ./.github/workflows/build-depends.yml
3131
needs: [container]
3232
with:

.gitlab-ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ x86_64-w64-mingw32:
184184
variables:
185185
BUILD_TARGET: win64
186186

187-
x86_64-pc-linux-gnu_debug:
187+
x86_64-pc-linux-gnu:
188188
extends: .build-depends-template
189189
variables:
190190
BUILD_TARGET: linux64
@@ -231,7 +231,7 @@ win64-build:
231231
linux64-build:
232232
extends: .build-template
233233
needs:
234-
- x86_64-pc-linux-gnu_debug
234+
- x86_64-pc-linux-gnu
235235
variables:
236236
BUILD_TARGET: linux64
237237

@@ -240,7 +240,7 @@ linux64_cxx20-build:
240240
- .build-template
241241
- .skip-in-fast-mode-template
242242
needs:
243-
- x86_64-pc-linux-gnu_debug
243+
- x86_64-pc-linux-gnu
244244
variables:
245245
BUILD_TARGET: linux64_cxx20
246246

@@ -249,7 +249,7 @@ linux64_sqlite-build:
249249
- .build-template
250250
- .skip-in-fast-mode-template
251251
needs:
252-
- x86_64-pc-linux-gnu_debug
252+
- x86_64-pc-linux-gnu
253253
variables:
254254
BUILD_TARGET: linux64_sqlite
255255

@@ -258,7 +258,7 @@ linux64_fuzz-build:
258258
- .build-template
259259
- .skip-in-fast-mode-template
260260
needs:
261-
- x86_64-pc-linux-gnu_debug
261+
- x86_64-pc-linux-gnu
262262
variables:
263263
BUILD_TARGET: linux64_fuzz
264264

@@ -267,7 +267,7 @@ linux64_fuzz-build:
267267
# - .build-template
268268
# - .skip-in-fast-mode-template
269269
# needs:
270-
# - x86_64-pc-linux-gnu_debug
270+
# - x86_64-pc-linux-gnu
271271
# variables:
272272
# BUILD_TARGET: linux64_asan
273273

@@ -285,7 +285,7 @@ linux64_ubsan-build:
285285
- .build-template
286286
- .skip-in-fast-mode-template
287287
needs:
288-
- x86_64-pc-linux-gnu_debug
288+
- x86_64-pc-linux-gnu
289289
variables:
290290
BUILD_TARGET: linux64_ubsan
291291

@@ -312,7 +312,7 @@ linux64_multiprocess-build:
312312
# - .build-template
313313
# - .skip-in-fast-mode-template
314314
# needs:
315-
# - x86_64-pc-linux-gnu_debug
315+
# - x86_64-pc-linux-gnu
316316
# variables:
317317
# BUILD_TARGET: linux64_valgrind
318318

ci/test/00_setup_env_native_multiprocess.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export LC_ALL=C.UTF-8
99
export CONTAINER_NAME=ci_native_multiprocess
1010
export HOST=x86_64-pc-linux-gnu
1111
export PACKAGES="cmake python3 llvm clang"
12-
export DEP_OPTS="DEBUG=1 MULTIPROCESS=1"
12+
export DEP_OPTS="MULTIPROCESS=1"
1313
export GOAL="install"
1414
export TEST_RUNNER_EXTRA="--v2transport"
1515
export BITCOIN_CONFIG="--with-boost-process --enable-debug CC=clang-18 CXX=clang++-18" # Use clang to avoid OOM

ci/test/00_setup_env_native_qt5.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export LC_ALL=C.UTF-8
99
export CONTAINER_NAME=ci_native_qt5
1010
export HOST=x86_64-pc-linux-gnu
1111
export PACKAGES="python3-zmq qtbase5-dev qttools5-dev-tools libdbus-1-dev libharfbuzz-dev"
12-
export DEP_OPTS="DEBUG=1"
12+
export DEP_OPTS=""
1313
export TEST_RUNNER_EXTRA="--previous-releases --coverage --extended --exclude feature_pruning,feature_dbcrash" # Run extended tests so that coverage does not fail, but exclude the very slow dbcrash
1414
export RUN_UNIT_TESTS_SEQUENTIAL="true"
1515
export RUN_UNIT_TESTS="false"

0 commit comments

Comments
 (0)