mirror of
https://github.com/marcoallegretti/karapace.git
synced 2026-03-26 21:43:09 +00:00
fix CI: drop opensuse from unit test matrix (OCI shell PATH issue)
opensuse/tumbleweed container has broken OCI exec PATH — neither sh nor bash is findable by the runtime. opensuse is still fully tested in the e2e-resolve matrix where containers get proper setup. Unit tests covered by ubuntu + fedora.
This commit is contained in:
parent
37211dfd22
commit
e8c0af0ac4
1 changed files with 0 additions and 6 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -53,18 +53,12 @@ jobs:
|
|||
- os: fedora
|
||||
runner: ubuntu-latest
|
||||
container: fedora:latest
|
||||
- os: opensuse
|
||||
runner: ubuntu-latest
|
||||
container: opensuse/tumbleweed:latest
|
||||
container: ${{ matrix.container || '' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install build deps (Fedora)
|
||||
if: matrix.os == 'fedora'
|
||||
run: dnf install -y gcc make curl
|
||||
- name: Install build deps (openSUSE)
|
||||
if: matrix.os == 'opensuse'
|
||||
run: zypper install -y gcc make curl gzip tar xz
|
||||
- name: Install Rust (container)
|
||||
if: matrix.container != ''
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue