Skip to content

Commit 9197223

Browse files
committed
ci:improved warn info
1 parent 019a645 commit 9197223

File tree

6 files changed

+19
-1
lines changed

6 files changed

+19
-1
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ jobs:
3434
git submodule init
3535
git submodule update
3636
37+
- name: Set TERM variable
38+
run: echo "TERM=xterm" >> $GITHUB_ENV
39+
3740
- name: Set up Dependency Environment
3841
run: |
3942
cd libxengine

.github/workflows/debian_build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ jobs:
4747
apt update -y
4848
apt install gcc g++ make git jq unzip curl wget -y
4949
50+
- name: Set TERM variable
51+
run: echo "TERM=xterm" >> $GITHUB_ENV
52+
5053
- name: install xengine library
5154
run: |
5255
latest_tag=$(curl -s https://api.github.com/repos/libxengine/libxengine/releases/latest | jq -r .tag_name)

.github/workflows/fedora_build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ jobs:
5353
dnf update -y
5454
dnf install gcc g++ make git jq unzip wget -y
5555
56+
- name: Set TERM variable
57+
run: echo "TERM=xterm" >> $GITHUB_ENV
58+
5659
- name: install xengine library
5760
run: |
5861
latest_tag=$(curl -s https://api.github.com/repos/libxengine/libxengine/releases/latest | jq -r .tag_name)

.github/workflows/macbuild.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ jobs:
3535
run: |
3636
git submodule init
3737
git submodule update
38-
38+
39+
- name: Set TERM variable
40+
run: echo "TERM=xterm" >> $GITHUB_ENV
41+
3942
- name: Set up Dependency x86_64 Environment
4043
if: matrix.os == 'macos-13'
4144
run: |

.github/workflows/rocky_build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
dnf update -y
5252
dnf install gcc g++ make git jq unzip wget -y
5353
54+
- name: Set TERM variable
55+
run: echo "TERM=xterm" >> $GITHUB_ENV
56+
5457
- name: install xengine library
5558
run: |
5659
latest_tag=$(curl -s https://api.github.com/repos/libxengine/libxengine/releases/latest | jq -r .tag_name)

.github/workflows/ubuntu_build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ jobs:
4141
git submodule init
4242
git submodule update
4343
44+
- name: Set TERM variable
45+
run: echo "TERM=xterm" >> $GITHUB_ENV
46+
4447
- name: Set up Dependency ubuntu24.04 Environment
4548
if: matrix.os == 'ubuntu-24.04'
4649
run: |

0 commit comments

Comments
 (0)