Install curl-minimal on Rocky Linux container

This commit is contained in:
Héctor Molinero Fernández 2022-12-29 09:46:44 +01:00
commit ffff2b531b
2 changed files with 4 additions and 4 deletions

View file

@ -93,7 +93,7 @@ jobs:
container: 'docker.io/rockylinux:9'
steps:
- name: 'Install packages'
run: 'dnf install -y ca-certificates curl findutils file idn2 make'
run: 'dnf install -y ca-certificates curl-minimal findutils file idn2 make'
- name: 'Checkout project'
uses: 'actions/checkout@v3'
- name: 'Test project'
@ -561,7 +561,7 @@ jobs:
container: 'docker.io/rockylinux:9'
steps:
- name: 'Install packages'
run: 'dnf install -y ca-certificates curl findutils file idn2 make'
run: 'dnf install -y ca-certificates curl-minimal findutils file idn2 make'
- name: 'Checkout project'
uses: 'actions/checkout@v3'
- name: 'Build project'

View file

@ -55,7 +55,7 @@ test-rockylinux-latest:
- 'lint-shellcheck-stable'
image: 'docker.io/rockylinux:9'
before_script:
- 'dnf install -y ca-certificates curl findutils file idn2 make'
- 'dnf install -y ca-certificates curl-minimal findutils file idn2 make'
script:
- 'make test-all'
@ -313,7 +313,7 @@ build-rockylinux-latest:
- 'test-rockylinux-latest'
image: 'docker.io/rockylinux:9'
before_script:
- 'dnf install -y ca-certificates curl findutils file idn2 make'
- 'dnf install -y ca-certificates curl-minimal findutils file idn2 make'
script:
- 'make hosts stats index'
- 'mv ./dist/ ./dist-build-rockylinux-latest/'