diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9e5297d1a2..349df2ac02 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,12 +18,20 @@ jobs: strategy: matrix: fedora_version: - - 41 - - 42 + - name: previous + version: 41 + - name: current + version: 42 + - name: branched + version: 43 + - name: rawhide + version: rawhide + continue-on-error: true fail-fast: false # if one fails, keep the other(s) running - name: "🛃 Unit tests (Fedora ${{ matrix.fedora_version }})" + name: "🛃 Unit tests (Fedora ${{ matrix.fedora_version.name }})" runs-on: ubuntu-24.04 - container: registry.fedoraproject.org/fedora:${{ matrix.fedora_version }} + container: registry.fedoraproject.org/fedora:${{ matrix.fedora_version.version }} + continue-on-error: ${{ matrix.continue-on-error || false }} env: # workaround for expired cert at source of indirect dependency # (go.opencensus.io/trace) @@ -98,7 +106,7 @@ jobs: - version: 9 image_tag: stream9 - version: 10 - image_tag: stream10-development + image_tag: stream10 fail-fast: false # if one fails, keep the other(s) running name: "🛃 Unit tests (CentOS Stream ${{ matrix.centos_stream.version }})" runs-on: ubuntu-24.04 diff --git a/Schutzfile b/Schutzfile index 5f7a687564..e8708df6d3 100644 --- a/Schutzfile +++ b/Schutzfile @@ -69,5 +69,19 @@ "commit": "3c676700b81baf7e0ff57887e97eac7d6192b4af" } } + }, + "fedora-43": { + "dependencies": { + "osbuild": { + "commit": "3c676700b81baf7e0ff57887e97eac7d6192b4af" + } + } + }, + "fedora-44": { + "dependencies": { + "osbuild": { + "commit": "3c676700b81baf7e0ff57887e97eac7d6192b4af" + } + } } } \ No newline at end of file