There was an error while loading. Please reload this page.
1 parent 1564097 commit 123fadbCopy full SHA for 123fadb
.github/workflows/mulle-sde-ci.i686.yml
@@ -28,11 +28,15 @@ jobs:
28
- name: Add to path
29
run: echo "$HOME/bin" >> $GITHUB_PATH
30
31
+ - name: Figure out if sudo is needed
32
+ run: |
33
+ echo "SUDO=$(which sudo)" >> $GITHUB_ENV
34
+
35
- name: Add 32 bit stuff
36
run: |
- dpkg --add-architecture i386
- apt-get update
- apt-get install libc6:i386 gcc-multilib
37
+ ${SUDO} dpkg --add-architecture i386
38
+ ${SUDO} apt-get update
39
+ ${SUDO} apt-get install libc6:i386 gcc-multilib
40
41
- uses: actions/checkout@v3
42
0 commit comments