Merge #20545: ci: Adjust cirrus ci task names

fa5c4f12f5d017d8dbe7700ca9688189eacbf32b ci: Adjust cirrus ci task names (MarcoFalke)

Pull request description:

  The task names are too long for GitHub to display them properly without truncation in the "checks-view". Fix that by using a new naming scheme:

  * Native builds don't mention "x86_64 Linux", as it is redundant, they do mention the OS (bionic or focal) in the name suffix
  * Cross builds mention the target in the prefix and the OS (always bionic) in the suffix
  * the macos native build simply says "macos native"

ACKs for top commit:
  practicalswift:
    ACK fa5c4f12f5d017d8dbe7700ca9688189eacbf32b: patch  looks  correct!
  hebasto:
    ACK fa5c4f12f5d017d8dbe7700ca9688189eacbf32b, I have reviewed the code and it looks OK, I agree it can be merged.
  RiccardoMasutti:
    ACK fa5c4f1

Tree-SHA512: 856deb0577c97c70069ef1d369991addc49522135c0ad9e382218fd79ba3d55a95d6c601288dcef0510764b92fbd30a9d7de32b08dc5be55482deab14049b892
This commit is contained in:
MarcoFalke 2020-12-02 17:21:53 +01:00 committed by Konstantin Akimov
parent 2fa526bb81
commit d11e379ed4
No known key found for this signature in database
GPG Key ID: 2176C4A5D01EA524

View File

@ -41,7 +41,7 @@ global_task_template: &GLOBAL_TASK_TEMPLATE
task: task:
name: 'ARM [GOAL: install] [buster] [unit tests, no functional tests]' name: 'ARM [unit tests, no functional tests] [buster]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
arm_container: arm_container:
image: debian:buster image: debian:buster
@ -52,7 +52,7 @@ task:
QEMU_USER_CMD: "" # Disable qemu and run the test natively QEMU_USER_CMD: "" # Disable qemu and run the test natively
task: task:
name: 'Win64 [GOAL: deploy] [unit tests, no gui tests, no boost::process, no functional tests]' name: 'Win64 [unit tests, no gui tests, no boost::process, no functional tests] [bionic]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
container: container:
image: ubuntu:focal image: ubuntu:focal
@ -60,7 +60,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_win64.sh" FILE_ENV: "./ci/test/00_setup_env_win64.sh"
task: task:
name: '32-bit + dash [GOAL: install] [CentOS 8] [gui]' name: '32-bit + dash [gui] [CentOS 8]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
container: container:
image: centos:8 image: centos:8
@ -69,7 +69,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_i686_centos.sh" FILE_ENV: "./ci/test/00_setup_env_i686_centos.sh"
task: task:
name: 'x86_64 Linux [GOAL: install] [focal] [previous releases, uses qt5 dev package and some depends packages] [unsigned char]' name: '[previous releases, uses qt5 dev package and some depends packages] [unsigned char] [focal]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
container: container:
image: ubuntu:focal image: ubuntu:focal
@ -77,7 +77,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_native_qt5.sh" FILE_ENV: "./ci/test/00_setup_env_native_qt5.sh"
task: task:
name: 'x86_64 Linux [GOAL: install] [lunar] [depends, sanitizers: thread (TSan), no gui]' name: '[depends, sanitizers: thread (TSan), no gui] [lunar]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
container: container:
image: ubuntu:lunar image: ubuntu:lunar
@ -88,7 +88,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_native_tsan.sh" FILE_ENV: "./ci/test/00_setup_env_native_tsan.sh"
task: task:
name: 'x86_64 Linux [GOAL: install] [focal] [depends, sanitizers: memory (MSan)]' name: '[depends, sanitizers: memory (MSan)] [focal]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
container: container:
image: ubuntu:focal image: ubuntu:focal
@ -96,7 +96,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_native_msan.sh" FILE_ENV: "./ci/test/00_setup_env_native_msan.sh"
task: task:
name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, sanitizers: address/leak (ASan + LSan) + undefined (UBSan) + integer]' name: '[no depends, only system libs, sanitizers: address/leak (ASan + LSan) + undefined (UBSan) + integer] [focal]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
container: container:
image: ubuntu:focal image: ubuntu:focal
@ -104,7 +104,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_native_asan.sh" FILE_ENV: "./ci/test/00_setup_env_native_asan.sh"
task: task:
name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, sanitizers: fuzzer,address,undefined]' name: '[no depends, only system libs, sanitizers: fuzzer,address,undefined] [focal]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
container: container:
image: ubuntu:focal image: ubuntu:focal
@ -112,7 +112,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_native_fuzz.sh" FILE_ENV: "./ci/test/00_setup_env_native_fuzz.sh"
task: task:
name: 'x86_64 Linux [GOAL: install] [focal] [multiprocess]' name: '[multiprocess] [focal]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
container: container:
image: ubuntu:focal image: ubuntu:focal
@ -120,7 +120,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_native_multiprocess.sh" FILE_ENV: "./ci/test/00_setup_env_native_multiprocess.sh"
task: task:
name: 'x86_64 Linux [GOAL: install] [focal] [no wallet]' name: '[no wallet] [focal]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
container: container:
image: ubuntu:focal image: ubuntu:focal
@ -128,7 +128,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_native_nowallet.sh" FILE_ENV: "./ci/test/00_setup_env_native_nowallet.sh"
task: task:
name: 'macOS 10.12 [GOAL: deploy] [no functional tests]' name: 'macOS 10.12 [gui, no tests] [bionic]'
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE
container: container:
image: ubuntu:focal image: ubuntu:focal
@ -136,7 +136,7 @@ task:
FILE_ENV: "./ci/test/00_setup_env_mac.sh" FILE_ENV: "./ci/test/00_setup_env_mac.sh"
task: task:
name: 'macOS 10.15 native [GOAL: install] [GUI] [no depends]' name: 'macOS 10.15 native [gui] [no depends]'
macos_brew_addon_script: macos_brew_addon_script:
- brew install boost libevent berkeley-db4 qt miniupnpc ccache zeromq qrencode sqlite libtool automake pkg-config gnu-getopt - brew install boost libevent berkeley-db4 qt miniupnpc ccache zeromq qrencode sqlite libtool automake pkg-config gnu-getopt
<< : *GLOBAL_TASK_TEMPLATE << : *GLOBAL_TASK_TEMPLATE