Skip to content

Commit

Permalink
ci: Fix debian/ubuntu installation
Browse files Browse the repository at this point in the history
Make sure we are running in non-interactive mode and that we don't get
blocked on tzdata update.

Signed-off-by: Lucas De Marchi <[email protected]>
[Emil: port from kmod]
Signed-off-by: Emil Velikov <[email protected]>
  • Loading branch information
lucasdemarchi authored and evelikov committed Nov 16, 2024
1 parent 807d0cc commit a25e931
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/actions/setup-debian/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ runs:
- name: Install dependencies
shell: bash
run: |
export DEBIAN_FRONTEND=noninteractive
export TZ=Etc/UTC
dpkg --add-architecture i386
apt-get update
apt-get install --yes \
Expand Down
2 changes: 2 additions & 0 deletions .github/actions/setup-ubuntu/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ runs:
- name: Install dependencies
shell: bash
run: |
export DEBIAN_FRONTEND=noninteractive
export TZ=Etc/UTC
dpkg --add-architecture i386
apt-get update
apt-get install --yes \
Expand Down

0 comments on commit a25e931

Please sign in to comment.