Skip to content

Commit 8b78ad3

Browse files
ci: Update apt before attempting install
1 parent 6babac4 commit 8b78ad3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939

4040
- name: Install armv7 libraries
4141
if: ${{ matrix.target == 'armv7-unknown-linux-gnueabihf' }}
42-
run: sudo apt-get install -y libc6-armhf-cross libc6-dev-armhf-cross gcc-arm-linux-gnueabihf
42+
run: |
43+
sudo apt-get update
44+
sudo apt-get install -y libc6-armhf-cross libc6-dev-armhf-cross gcc-arm-linux-gnueabihf
4345
4446
- run: cargo check --target=${{ matrix.target }} --features=${{ matrix.features }}

0 commit comments

Comments
 (0)