Skip to content

Commit 526b1c8

Browse files
committed
Fix AppImage execution
1 parent 4db1600 commit 526b1c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ jobs:
1919
env:
2020
ARCH: ${{ matrix.ARCH }}
2121
BUILD_TYPE: ${{ matrix.BUILD_TYPE }}
22+
DEBIAN_FRONTEND: interactive
23+
APPIMAGE_EXTRACT_AND_RUN: 1
2224

2325
steps:
2426
- name: Install dependencies (x86_64)
2527
if: matrix.ARCH == 'x86_64'
2628
run: |
27-
export DEBIAN_FRONTEND=noninteractive
2829
apt-get update
2930
apt-get install -y build-essential cmake git gcovr libmagic-dev libjpeg-dev libpng-dev libboost-filesystem-dev libboost-regex-dev cimg-dev qt5-default qtdeclarative5-dev-tools nlohmann-json3-dev qml-module-qtquick2 patchelf wget
3031
3132
- name: Install dependencies (i386)
3233
if: matrix.ARCH == 'i386'
3334
run: |
34-
export DEBIAN_FRONTEND=noninteractive
3535
dpkg --add-architecture i386
3636
apt-get update
3737
apt-get install -y build-essential cmake git gcovr libmagic-dev:i386 libjpeg-dev:i386 libpng-dev:i386 libboost-filesystem-dev:i386 libboost-regex-dev:i386 cimg-dev nlohmann-json3-dev gcc-multilib g++-multilib libfuse2:i386 patchelf wget

0 commit comments

Comments
 (0)