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
|
||||
image: deukhoofd/linux64builder
|
||||
commands:
|
||||
- cargo nextest run
|
||||
- cargo nextest run --color=always
|
||||
- name: test-release-linux
|
||||
image: deukhoofd/linux64builder
|
||||
commands:
|
||||
- cargo nextest run --release
|
||||
- cargo nextest run --release --color=always
|
||||
depends_on:
|
||||
- test-debug-linux
|
||||
- name: test-miri-release-linux
|
||||
image: deukhoofd/linux64builder
|
||||
commands:
|
||||
- cargo miri test --release
|
||||
- cargo miri test --release --color=always
|
||||
depends_on:
|
||||
- test-debug-linux
|
||||
- name: test-coverage
|
||||
image: deukhoofd/linux64builder
|
||||
commands:
|
||||
- cargo llvm-cov nextest
|
||||
- cargo llvm-cov nextest --color=always
|
||||
depends_on:
|
||||
- test-debug-linux
|
||||
|
|
Loading…
Reference in New Issue