mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
a5abf4b6b3
cbd661122e5852d543467090459d33cf8cb4a3c7 Set LD_LIBRARY_PATH consistently in travis tests (Russell Yanofsky) fa35c34df781cf46bbd15522961f214f03b958bf Remove unused ci configs that have been moved elsewhere (MarcoFalke) 3333cb96994182bbdbb21174b691feb716858bc2 fuzz: Pass down MAKEJOBS to test_runner (MarcoFalke) Pull request description: Just how `MAKEJOBS` is passed down to the functional test `test_runner`, do the same for the fuzz `test_runner`. Also includes a commit to remove unused config files, which have been moved elsewhere. Top commit has no ACKs. Tree-SHA512: 32557102c9e40599b432aeb004c8427e8fbb07cdf4048050cdc8241d1b029aaad306b1131007eeca8315a4f71c38a7efbb833310e056cd11b835676cd19b8902
23 lines
551 B
YAML
23 lines
551 B
YAML
task:
|
|
name: "x86_64 Linux [GOAL: install] [focal] [Using ./ci/ system]"
|
|
container:
|
|
image: ubuntu:focal
|
|
cpu: 8
|
|
memory: 8G
|
|
timeout_in: 60m
|
|
env:
|
|
MAKEJOBS: "-j9"
|
|
DANGER_RUN_CI_ON_HOST: "1"
|
|
CCACHE_SIZE: "200M"
|
|
CCACHE_DIR: "/tmp/ccache_dir"
|
|
ccache_cache:
|
|
folder: "/tmp/ccache_dir"
|
|
depends_built_cache:
|
|
folder: "/tmp/cirrus-ci-build/depends/built"
|
|
install_script:
|
|
- apt-get update
|
|
- apt-get -y install git bash ccache
|
|
- ccache --max-size=${CCACHE_SIZE}
|
|
ci_script:
|
|
- ./ci/test_run_all.sh
|