Skip to content

Commit 4db1600

Browse files
committed
Fix hanging apt installation
1 parent a648a19 commit 4db1600

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ jobs:
2424
- name: Install dependencies (x86_64)
2525
if: matrix.ARCH == 'x86_64'
2626
run: |
27+
export DEBIAN_FRONTEND=noninteractive
2728
apt-get update
2829
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
2930
3031
- name: Install dependencies (i386)
3132
if: matrix.ARCH == 'i386'
3233
run: |
34+
export DEBIAN_FRONTEND=noninteractive
3335
dpkg --add-architecture i386
3436
apt-get update
3537
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)