Force colour in CI
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
3c1fc4615f
commit
0c076dd711
|
@ -7,22 +7,22 @@ steps:
|
||||||
- name: test-debug-linux
|
- name: test-debug-linux
|
||||||
image: deukhoofd/linux64builder
|
image: deukhoofd/linux64builder
|
||||||
commands:
|
commands:
|
||||||
- cargo nextest run
|
- cargo nextest run --color=always
|
||||||
- name: test-release-linux
|
- name: test-release-linux
|
||||||
image: deukhoofd/linux64builder
|
image: deukhoofd/linux64builder
|
||||||
commands:
|
commands:
|
||||||
- cargo nextest run --release
|
- cargo nextest run --release --color=always
|
||||||
depends_on:
|
depends_on:
|
||||||
- test-debug-linux
|
- test-debug-linux
|
||||||
- name: test-miri-release-linux
|
- name: test-miri-release-linux
|
||||||
image: deukhoofd/linux64builder
|
image: deukhoofd/linux64builder
|
||||||
commands:
|
commands:
|
||||||
- cargo miri test --release
|
- cargo miri test --release --color=always
|
||||||
depends_on:
|
depends_on:
|
||||||
- test-debug-linux
|
- test-debug-linux
|
||||||
- name: test-coverage
|
- name: test-coverage
|
||||||
image: deukhoofd/linux64builder
|
image: deukhoofd/linux64builder
|
||||||
commands:
|
commands:
|
||||||
- cargo llvm-cov nextest
|
- cargo llvm-cov nextest --color=always
|
||||||
depends_on:
|
depends_on:
|
||||||
- test-debug-linux
|
- test-debug-linux
|
||||||
|
|
Loading…
Reference in New Issue