fix: intermittent CI failures due to a pkger distro detection error

* debug: enable pkger tracing

* fix: manually specify distro names in pkger config
This commit is contained in:
Ilya Zlobintsev 2024-02-10 08:27:53 +02:00 committed by GitHub
parent 61041e4731
commit 21dbbd81f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -29,7 +29,7 @@ jobs:
chmod +x /usr/local/bin/pkger chmod +x /usr/local/bin/pkger
- name: Build packages - name: Build packages
run: pkger -c .pkger.yml build ${{ matrix.recipe }} -i ${{ matrix.target-os }} run: pkger -t -c .pkger.yml build ${{ matrix.recipe }} -i ${{ matrix.target-os }}
- name: Copy release files - name: Copy release files
run: | run: |

View File

@ -10,14 +10,20 @@ ssh: ~
images: images:
- name: debian-12 - name: debian-12
target: deb target: deb
os: Debian
- name: fedora-38 - name: fedora-38
target: rpm target: rpm
os: Fedora
- name: fedora-39 - name: fedora-39
target: rpm target: rpm
os: Fedora
- name: ubuntu-2204 - name: ubuntu-2204
target: deb target: deb
os: Ubuntu
- name: arch - name: arch
target: pkg target: pkg
os: Arch Linux
- name: opensuse-tumbleweed - name: opensuse-tumbleweed
target: rpm target: rpm
os: OpenSUSE
custom_simple_images: ~ custom_simple_images: ~