Skip to content

Commit b0e150e

Browse files
authored
attempt to get colour output in CI (#9031)
* set the TERM environment variable in CI * set the environment variable at the top level * try `FORCE_COLOR` instead
1 parent 31111b3 commit b0e150e

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

.github/workflows/ci-additional.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ concurrency:
1818
group: ${{ github.workflow }}-${{ github.ref }}
1919
cancel-in-progress: true
2020

21+
env:
22+
FORCE_COLOR: 3
23+
2124
jobs:
2225
detect-ci-trigger:
2326
name: detect ci trigger

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ concurrency:
1818
group: ${{ github.workflow }}-${{ github.ref }}
1919
cancel-in-progress: true
2020

21+
env:
22+
FORCE_COLOR: 3
23+
2124
jobs:
2225
detect-ci-trigger:
2326
name: detect ci trigger

.github/workflows/hypothesis.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111
- cron: "0 0 * * *" # Daily “At 00:00” UTC
1212
workflow_dispatch: # allows you to trigger manually
1313

14+
env:
15+
FORCE_COLOR: 3
16+
1417
jobs:
1518
detect-ci-trigger:
1619
name: detect ci trigger

.github/workflows/upstream-dev-ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ concurrency:
1515
group: ${{ github.workflow }}-${{ github.ref }}
1616
cancel-in-progress: true
1717

18+
env:
19+
FORCE_COLOR: 3
20+
1821
jobs:
1922
detect-ci-trigger:
2023
name: detect upstream-dev ci trigger

0 commit comments

Comments
 (0)