mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-05-18 16:01:00 +02:00
ci: Run ci configs on cirrus
This commit is contained in:
parent
218fe60d91
commit
fa8e494554
40
.cirrus.yml
40
.cirrus.yml
@ -52,6 +52,14 @@ global_task_template: &GLOBAL_TASK_TEMPLATE
|
|||||||
# install_script:
|
# install_script:
|
||||||
# - choco install python --version=3.7.7 -y
|
# - choco install python --version=3.7.7 -y
|
||||||
|
|
||||||
|
task:
|
||||||
|
name: 'x86_64 Linux [GOAL: install] [bionic] [C++17, previous releases, uses qt5 dev package and some depends packages] [unsigned char]'
|
||||||
|
<< : *GLOBAL_TASK_TEMPLATE
|
||||||
|
container:
|
||||||
|
image: ubuntu:bionic
|
||||||
|
env:
|
||||||
|
FILE_ENV: "./ci/test/00_setup_env_native_qt5.sh"
|
||||||
|
|
||||||
task:
|
task:
|
||||||
name: 'x86_64 Linux [GOAL: install] [focal] [depends, sanitizers: thread (TSan), no gui]'
|
name: 'x86_64 Linux [GOAL: install] [focal] [depends, sanitizers: thread (TSan), no gui]'
|
||||||
<< : *GLOBAL_TASK_TEMPLATE
|
<< : *GLOBAL_TASK_TEMPLATE
|
||||||
@ -63,6 +71,14 @@ task:
|
|||||||
MAKEJOBS: "-j8"
|
MAKEJOBS: "-j8"
|
||||||
FILE_ENV: "./ci/test/00_setup_env_native_tsan.sh"
|
FILE_ENV: "./ci/test/00_setup_env_native_tsan.sh"
|
||||||
|
|
||||||
|
task:
|
||||||
|
name: 'x86_64 Linux [GOAL: install] [focal] [depends, sanitizers: memory (MSan)]'
|
||||||
|
<< : *GLOBAL_TASK_TEMPLATE
|
||||||
|
container:
|
||||||
|
image: ubuntu:focal
|
||||||
|
env:
|
||||||
|
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: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, sanitizers: address/leak (ASan + LSan) + undefined (UBSan) + integer]'
|
||||||
<< : *GLOBAL_TASK_TEMPLATE
|
<< : *GLOBAL_TASK_TEMPLATE
|
||||||
@ -71,6 +87,14 @@ task:
|
|||||||
env:
|
env:
|
||||||
FILE_ENV: "./ci/test/00_setup_env_native_asan.sh"
|
FILE_ENV: "./ci/test/00_setup_env_native_asan.sh"
|
||||||
|
|
||||||
|
task:
|
||||||
|
name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, sanitizers: fuzzer,address,undefined]'
|
||||||
|
<< : *GLOBAL_TASK_TEMPLATE
|
||||||
|
container:
|
||||||
|
image: ubuntu:focal
|
||||||
|
env:
|
||||||
|
FILE_ENV: "./ci/test/00_setup_env_native_fuzz.sh"
|
||||||
|
|
||||||
task:
|
task:
|
||||||
name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, fuzzers under valgrind]'
|
name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, fuzzers under valgrind]'
|
||||||
<< : *GLOBAL_TASK_TEMPLATE
|
<< : *GLOBAL_TASK_TEMPLATE
|
||||||
@ -78,3 +102,19 @@ task:
|
|||||||
image: ubuntu:focal
|
image: ubuntu:focal
|
||||||
env:
|
env:
|
||||||
FILE_ENV: "./ci/test/00_setup_env_native_fuzz_with_valgrind.sh"
|
FILE_ENV: "./ci/test/00_setup_env_native_fuzz_with_valgrind.sh"
|
||||||
|
|
||||||
|
task:
|
||||||
|
name: 'x86_64 Linux [GOAL: install] [focal] [multiprocess]'
|
||||||
|
<< : *GLOBAL_TASK_TEMPLATE
|
||||||
|
container:
|
||||||
|
image: ubuntu:focal
|
||||||
|
env:
|
||||||
|
FILE_ENV: "./ci/test/00_setup_env_native_multiprocess.sh"
|
||||||
|
|
||||||
|
task:
|
||||||
|
name: 'macOS 10.12 [GOAL: deploy] [no functional tests]'
|
||||||
|
<< : *GLOBAL_TASK_TEMPLATE
|
||||||
|
container:
|
||||||
|
image: ubuntu:bionic
|
||||||
|
env:
|
||||||
|
FILE_ENV: "./ci/test/00_setup_env_mac.sh"
|
||||||
|
25
.travis.yml
25
.travis.yml
@ -89,36 +89,11 @@ jobs:
|
|||||||
env: >-
|
env: >-
|
||||||
FILE_ENV="./ci/test/00_setup_env_i686_centos.sh"
|
FILE_ENV="./ci/test/00_setup_env_i686_centos.sh"
|
||||||
|
|
||||||
- stage: test
|
|
||||||
name: 'x86_64 Linux [GOAL: install] [bionic] [C++17, previous releases, uses qt5 dev package and some depends packages] [unsigned char]'
|
|
||||||
env: >-
|
|
||||||
FILE_ENV="./ci/test/00_setup_env_native_qt5.sh"
|
|
||||||
|
|
||||||
- stage: test
|
|
||||||
name: 'x86_64 Linux [GOAL: install] [focal] [depends, sanitizers: memory (MSan)]'
|
|
||||||
env: >-
|
|
||||||
FILE_ENV="./ci/test/00_setup_env_native_msan.sh"
|
|
||||||
|
|
||||||
- stage: test
|
|
||||||
name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, sanitizers: fuzzer,address,undefined]'
|
|
||||||
env: >-
|
|
||||||
FILE_ENV="./ci/test/00_setup_env_native_fuzz.sh"
|
|
||||||
|
|
||||||
- stage: test
|
|
||||||
name: 'x86_64 Linux [GOAL: install] [focal] [multiprocess]'
|
|
||||||
env: >-
|
|
||||||
FILE_ENV="./ci/test/00_setup_env_native_multiprocess.sh"
|
|
||||||
|
|
||||||
- stage: test
|
- stage: test
|
||||||
name: 'x86_64 Linux [GOAL: install] [xenial] [no wallet]'
|
name: 'x86_64 Linux [GOAL: install] [xenial] [no wallet]'
|
||||||
env: >-
|
env: >-
|
||||||
FILE_ENV="./ci/test/00_setup_env_native_nowallet.sh"
|
FILE_ENV="./ci/test/00_setup_env_native_nowallet.sh"
|
||||||
|
|
||||||
- stage: test
|
|
||||||
name: 'macOS 10.12 [GOAL: deploy] [no functional tests]'
|
|
||||||
env: >-
|
|
||||||
FILE_ENV="./ci/test/00_setup_env_mac.sh"
|
|
||||||
|
|
||||||
- stage: test
|
- stage: test
|
||||||
name: 'macOS 10.14 native [GOAL: install] [GUI] [no depends]'
|
name: 'macOS 10.14 native [GOAL: install] [GUI] [no depends]'
|
||||||
os: osx
|
os: osx
|
||||||
|
Loading…
x
Reference in New Issue
Block a user