Skip to content

Commit 278de2b

Browse files
authored
CI fixing (#327)
1 parent 329bd20 commit 278de2b

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/actions/fsw-setup/action.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ description: |
44
runs:
55
using: "composite"
66
steps:
7+
- name: Add 32bit
8+
if: runner.os == 'Linux'
9+
shell: bash
10+
run: |
11+
sudo dpkg --add-architecture i386
12+
sudo apt-get -qq update
713
- name: Compute Cache Hashes
814
id: compute_hashes
915
shell: bash
@@ -13,7 +19,7 @@ runs:
1319
- uses: awalsh128/cache-apt-pkgs-action@latest
1420
if: runner.os == 'Linux'
1521
with:
16-
packages: pkg-config libfuse-dev:i1386 gcc-multilib g++-multilib
22+
packages: pkg-config libfuse-dev:i386 gcc-multilib g++-multilib
1723
version: 1.0
1824

1925
- name: Set up Python

0 commit comments

Comments
 (0)