Skip to content

Commit fa8e89d

Browse files
author
MarcoFalke
committed
ci: Remove distro-name from task name
The exact distro name should not be important. Also, it is easy to find out, if needed. Thus, remove it to avoid bloat and maintenance overhead having to keep it in sync.
1 parent fad006f commit fa8e89d

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.cirrus.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ compute_credits_template: &CREDITS_TEMPLATE
7676
use_compute_credits: $CIRRUS_REPO_FULL_NAME == 'bitcoin/bitcoin' && $CIRRUS_PR != ""
7777

7878
task:
79-
name: 'lint [bookworm]'
79+
name: 'lint'
8080
<< : *BASE_TEMPLATE
8181
container:
8282
image: debian:bookworm
@@ -93,7 +93,7 @@ task:
9393
- ./ci/lint_run_all.sh
9494

9595
task:
96-
name: 'tidy [lunar]'
96+
name: 'tidy'
9797
<< : *GLOBAL_TASK_TEMPLATE
9898
persistent_worker:
9999
labels:
@@ -198,7 +198,7 @@ task:
198198
- python test\functional\test_runner.py --nocleanup --ci --quiet --combinedlogslen=99999999 --jobs=6 --timeout-factor=8 --extended --exclude feature_dbcrash
199199

200200
task:
201-
name: 'ARM [unit tests, no functional tests] [bullseye]'
201+
name: 'ARM, unit tests, no functional tests'
202202
<< : *GLOBAL_TASK_TEMPLATE
203203
persistent_worker:
204204
labels:
@@ -207,7 +207,7 @@ task:
207207
FILE_ENV: "./ci/test/00_setup_env_arm.sh"
208208

209209
task:
210-
name: 'Win64 [unit tests, no gui tests, no boost::process, no functional tests] [jammy]'
210+
name: 'Win64, unit tests, no gui tests, no boost::process, no functional tests'
211211
<< : *GLOBAL_TASK_TEMPLATE
212212
persistent_worker:
213213
labels:
@@ -216,7 +216,7 @@ task:
216216
FILE_ENV: "./ci/test/00_setup_env_win64.sh"
217217

218218
task:
219-
name: '32-bit + dash [gui] [CentOS 9]'
219+
name: '32-bit CentOS, dash, gui'
220220
<< : *GLOBAL_TASK_TEMPLATE
221221
persistent_worker:
222222
labels:
@@ -225,7 +225,7 @@ task:
225225
FILE_ENV: "./ci/test/00_setup_env_i686_centos.sh"
226226

227227
task:
228-
name: '[previous releases, qt5 dev package and depends packages, DEBUG] [focal]'
228+
name: 'previous releases, qt5 dev package and depends packages, DEBUG'
229229
<< : *GLOBAL_TASK_TEMPLATE
230230
persistent_worker:
231231
labels:
@@ -234,7 +234,7 @@ task:
234234
FILE_ENV: "./ci/test/00_setup_env_native_qt5.sh"
235235

236236
task:
237-
name: '[TSan, depends, gui] [lunar]'
237+
name: 'TSan, depends, gui'
238238
<< : *GLOBAL_TASK_TEMPLATE
239239
persistent_worker:
240240
labels:
@@ -243,7 +243,7 @@ task:
243243
FILE_ENV: "./ci/test/00_setup_env_native_tsan.sh"
244244

245245
task:
246-
name: '[MSan, depends] [jammy]'
246+
name: 'MSan, depends'
247247
<< : *GLOBAL_TASK_TEMPLATE
248248
persistent_worker:
249249
labels:
@@ -253,7 +253,7 @@ task:
253253
FILE_ENV: "./ci/test/00_setup_env_native_msan.sh"
254254

255255
task:
256-
name: '[ASan + LSan + UBSan + integer, no depends, USDT] [lunar]'
256+
name: 'ASan + LSan + UBSan + integer, no depends, USDT'
257257
enable_bpfcc_script:
258258
# In the image build step, no external environment variables are available,
259259
# so any settings will need to be written to the settings env file:
@@ -266,7 +266,7 @@ task:
266266
FILE_ENV: "./ci/test/00_setup_env_native_asan.sh"
267267

268268
task:
269-
name: '[fuzzer,address,undefined,integer, no depends] [lunar]'
269+
name: 'fuzzer,address,undefined,integer, no depends'
270270
<< : *GLOBAL_TASK_TEMPLATE
271271
persistent_worker:
272272
labels:
@@ -275,7 +275,7 @@ task:
275275
FILE_ENV: "./ci/test/00_setup_env_native_fuzz.sh"
276276

277277
task:
278-
name: '[multiprocess, i686, DEBUG] [focal]'
278+
name: 'multiprocess, i686, DEBUG'
279279
<< : *GLOBAL_TASK_TEMPLATE
280280
persistent_worker:
281281
labels:
@@ -284,7 +284,7 @@ task:
284284
FILE_ENV: "./ci/test/00_setup_env_i686_multiprocess.sh"
285285

286286
task:
287-
name: '[no wallet, libbitcoinkernel] [focal]'
287+
name: 'no wallet, libbitcoinkernel'
288288
<< : *GLOBAL_TASK_TEMPLATE
289289
persistent_worker:
290290
labels:
@@ -293,7 +293,7 @@ task:
293293
FILE_ENV: "./ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh"
294294

295295
task:
296-
name: 'macOS 11.0 [gui, no tests] [jammy]'
296+
name: 'macOS-cross 11.0, gui, no tests'
297297
<< : *GLOBAL_TASK_TEMPLATE
298298
persistent_worker:
299299
labels:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ env:
2424

2525
jobs:
2626
macos-native-x86_64:
27-
name: macOS 13 native, x86_64 [no depends, sqlite only, gui]
27+
name: 'macOS 13 native, x86_64, no depends, sqlite only, gui'
2828
# Use latest image, but hardcode version to avoid silent upgrades (and breaks).
2929
# See: https://github.com/actions/runner-images#available-images.
3030
runs-on: macos-13 # Use M1 once available https://github.com/github/roadmap/issues/528

0 commit comments

Comments
 (0)