We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 329bd20 commit 278de2bCopy full SHA for 278de2b
1 file changed
.github/actions/fsw-setup/action.yml
@@ -4,6 +4,12 @@ description: |
4
runs:
5
using: "composite"
6
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
13
- name: Compute Cache Hashes
14
id: compute_hashes
15
shell: bash
@@ -13,7 +19,7 @@ runs:
19
- uses: awalsh128/cache-apt-pkgs-action@latest
20
if: runner.os == 'Linux'
21
with:
16
- packages: pkg-config libfuse-dev:i1386 gcc-multilib g++-multilib
22
+ packages: pkg-config libfuse-dev:i386 gcc-multilib g++-multilib
17
23
version: 1.0
18
24
25
- name: Set up Python
0 commit comments