Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

workflows: ensure we do non-interactive set up #8107

Merged
merged 2 commits into from
Oct 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/call-build-linux-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ jobs:

- name: Retrieve target info for repo creation
id: get-target-info
timeout-minutes: 5
# Remove any .arm648 suffix
# For ubuntu map to codename using the disto-info list (CSV)
run: |
Expand All @@ -178,6 +179,7 @@ jobs:
echo "target=$TARGET" >> $GITHUB_OUTPUT
env:
DISTRO: ${{ matrix.distro }}
DEBIAN_FRONTEND: noninteractive
shell: bash

- name: Verify output target
Expand Down Expand Up @@ -219,9 +221,12 @@ jobs:
- call-build-linux-packages
steps:
- name: Install dependencies
timeout-minutes: 10
run: |
sudo apt-get update
sudo apt-get install -y createrepo-c aptly awscli
env:
DEBIAN_FRONTEND: noninteractive

- name: Checkout code for repo metadata construction - always latest
uses: actions/checkout@v4
Expand Down
Loading