Skip to content

Commit 1f7a570

Browse files
committed
fix: ci
1 parent 304416d commit 1f7a570

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/changelog-preview.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
20+
- name: Install Linux build tools
21+
run: sudo apt-get update && sudo apt-get install -y build-essential
2022
- uses: actions/checkout@v2
2123
with:
2224
ref: develop

.github/workflows/check-pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
uses: actions/setup-node@v4
2424
with:
2525
node-version: ${{ matrix.node-version }}
26+
- name: Install Linux build tools
27+
run: sudo apt-get update && sudo apt-get install -y build-essential
2628
- name: Install && Build - SDK and Sample App
2729
uses: ./.github/actions/install-and-build-sdk
2830
- name: Lint

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333
registry-url: 'https://registry.npmjs.org'
34+
- name: Install Linux build tools
35+
run: sudo apt-get update && sudo apt-get install -y build-essential
3436

3537
- name: Prepare git
3638
run: |

.github/workflows/sample-distribution.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ jobs:
6969
with:
7070
node-version: ${{ matrix.node-version }}
7171
- uses: actions/checkout@v2
72+
- name: Install Linux build tools
73+
run: sudo apt-get update && sudo apt-get install -y build-essential
7274
- uses: actions/setup-java@v3
7375
with:
7476
distribution: 'zulu'

0 commit comments

Comments
 (0)