Skip to content

Commit cd7b30f

Browse files
committed
ci: add build essential
1 parent 4c77a20 commit cd7b30f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ jobs:
3636
with:
3737
persist-credentials: false
3838

39+
- name: Install build-essential
40+
run: |
41+
sudo apt-get update
42+
sudo apt-get install -y build-essential
43+
3944
- name: Install Rust toolchain
4045
run: |
4146
rustup toolchain install stable --profile minimal
@@ -119,6 +124,12 @@ jobs:
119124
- name: Checkout repository
120125
uses: actions/checkout@v4
121126

127+
- name: Install build-essential
128+
if: matrix.os == 'ubuntu-latest'
129+
run: |
130+
sudo apt-get update
131+
sudo apt-get install -y build-essential
132+
122133
- name: Install Rust toolchain
123134
run: rustup toolchain install stable --profile minimal --target ${{ matrix.target }}
124135

0 commit comments

Comments
 (0)