Skip to content

Commit 6730d01

Browse files
committed
ci: Fix
1 parent 3ed8eaf commit 6730d01

3 files changed

Lines changed: 12 additions & 8 deletions

File tree

.github/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM $BASE_IMAGE
99
#Install base dependencys
1010
RUN apt-get update
1111
RUN apt-get install -y \
12-
devscripts equivs build-essential lintian clang git lsb-release
12+
devscripts equivs build-essential lintian clang git lsb-release \
1313
python3 gpg dirmngr sudo xauth curl --no-install-recommends && \
1414
apt-get clean
1515

.github/workflows/ci-docker.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,6 @@ jobs:
8585
run: |
8686
echo Number of CPUs: $(nproc)
8787
echo "$GITHUB_CONTEXT"
88-
- name: Install pre-dependencies
89-
env:
90-
DEBIAN_FRONTEND: noninteractive
91-
run: |
92-
set -ex
93-
apt-get --quiet update
94-
apt-get --yes install curl dirmngr --no-install-recommends
9588
9689
- uses: actions/checkout@v6
9790
with:

.github/workflows/docker.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,19 @@ name: Build Docker
44

55
on:
66
workflow_dispatch:
7+
inputs:
8+
logLevel:
9+
description: 'Log level'
10+
required: true
11+
default: 'warning'
12+
type: choice
13+
options:
14+
- info
15+
- warning
16+
- debug
717
schedule:
818
- cron: "18 0 * * 1"
19+
push:
920

1021
permissions:
1122
contents: read # to fetch code (actions/checkout)

0 commit comments

Comments
 (0)