CI: Enable coloured CMake progress statements.

This commit is contained in:
Tommy 2022-06-09 16:07:15 +12:00
parent ab9951b272
commit 1cffa2e8fd
2 changed files with 7 additions and 1 deletions

View file

@ -48,6 +48,7 @@ jobs:
export CXX_STD=17
export CFG=release
export LTO=true
export CLICOLOR_FORCE=1
./.github/workflows/ci-scripts/ubuntu.sh
ubuntu-2004-cmake-clang-debug:
@ -69,6 +70,7 @@ jobs:
export CXX_STD=17
export CFG=debug
export LTO=false
export CLICOLOR_FORCE=1
./.github/workflows/ci-scripts/ubuntu.sh
@ -91,6 +93,7 @@ jobs:
export CXX_STD=17
export CFG=release
export LTO=false
export CLICOLOR_FORCE=1
./.github/workflows/ci-scripts/ubuntu.sh
- name: Upload
@ -119,6 +122,7 @@ jobs:
export CXX_STD=17
export CFG=release
export LTO=false
export CLICOLOR_FORCE=1
./.github/workflows/ci-scripts/ubuntu.sh
- name: Upload 1
@ -154,6 +158,7 @@ jobs:
export CXX_STD=17
export CFG=release
export LTO=false
export CLICOLOR_FORCE=1
./.github/workflows/ci-scripts/ubuntu.sh
translations:
@ -175,6 +180,7 @@ jobs:
export CXX_STD=17
export CFG=release
export LTO=false
export CLICOLOR_FORCE=1
./.github/workflows/ci-scripts/ubuntu.sh
macos-intel-debug:

View file

@ -40,6 +40,6 @@ else
docker run ${tty+--tty} --cap-add=ALL --privileged \
--env BRANCH --env IMAGE --env NLS --env TOOL --env CC --env CXX \
--env CXX_STD --env CFG --env LTO \
--env CXX_STD --env CFG --env LTO --env CLICOLOR_FORCE \
wesnoth-repo:"$IMAGE"-"$BRANCH" ./.github/workflows/ci-scripts/docker.sh
fi