Skip to content

Commit 2b8558b

Browse files
committed
Prevent interactive questions by apt-get from blocking the build
1 parent 74f09c0 commit 2b8558b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ jobs:
1818

1919
- name: Install build dependencies
2020
run: |
21+
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
2122
sed 's/^deb /deb-src /' /etc/apt/sources.list >> /etc/apt/sources.list
22-
apt-get -y update
23-
apt-get -y install build-essential debhelper dpkg-sig fakeroot wget git meson python3-pyudev python3-pytest python3-libevdev
24-
apt-get -y build-dep libwacom libwacom-dev
23+
apt-get -q -y update
24+
apt-get -q -y install build-essential debhelper dpkg-sig fakeroot wget git meson python3-pyudev python3-pytest python3-libevdev
25+
apt-get -q -y build-dep libwacom libwacom-dev
2526
2627
- name: Build package
2728
run: |

0 commit comments

Comments
 (0)