|
30 | 30 | name: test-tarball
|
31 | 31 | path: ${{ github.workspace }}/release.tar.gz
|
32 | 32 |
|
| 33 | + gentoo-family: |
| 34 | + needs: build |
| 35 | + strategy: |
| 36 | + matrix: |
| 37 | + version: [latest] |
| 38 | + os: [gentoo/portage] |
| 39 | + runs-on: ubuntu-latest |
| 40 | + container: |
| 41 | + image: ${{ matrix.os }}:${{ matrix.version }} |
| 42 | + steps: |
| 43 | + - name: Download Artifact |
| 44 | + uses: actions/download-artifact@v4 |
| 45 | + with: |
| 46 | + name: test-tarball |
| 47 | + - name: Install git so we get the .github directory |
| 48 | + run: emerge dev-vcs/git |
| 49 | + - name: Unpack the "Release" tarball |
| 50 | + run: tar xvf release.tar.gz |
| 51 | + - name: Setup image and run bats tests |
| 52 | + working-directory: release |
| 53 | + run: .github/jobs/configure-checks/setup_configure_image.sh |
| 54 | + |
| 55 | + suse-family: |
| 56 | + needs: build |
| 57 | + strategy: |
| 58 | + matrix: |
| 59 | + version: [latest] |
| 60 | + os: [opensuse/tumbleweed] |
| 61 | + runs-on: ubuntu-latest |
| 62 | + container: |
| 63 | + image: ${{ matrix.os }}:${{ matrix.version }} |
| 64 | + steps: |
| 65 | + - name: Download Artifact |
| 66 | + uses: actions/download-artifact@v4 |
| 67 | + with: |
| 68 | + name: test-tarball |
| 69 | + - name: Install git so we get the .github directory |
| 70 | + run: zypper install -y git |
| 71 | + - name: Unpack the "Release" tarball |
| 72 | + run: tar xvf release.tar.gz |
| 73 | + - name: Setup image and run bats tests |
| 74 | + working-directory: release |
| 75 | + run: .github/jobs/configure-checks/setup_configure_image.sh |
| 76 | + |
| 77 | + arch-family: |
| 78 | + needs: build |
| 79 | + strategy: |
| 80 | + matrix: |
| 81 | + version: [latest] |
| 82 | + os: [archlinux] |
| 83 | + runs-on: ubuntu-latest |
| 84 | + container: |
| 85 | + image: ${{ matrix.os }}:${{ matrix.version }} |
| 86 | + steps: |
| 87 | + - name: Download Artifact |
| 88 | + uses: actions/download-artifact@v4 |
| 89 | + with: |
| 90 | + name: test-tarball |
| 91 | + - name: Install git so we get the .github directory |
| 92 | + run: pacman -Sy git |
| 93 | + - name: Unpack the "Release" tarball |
| 94 | + run: tar xvf release.tar.gz |
| 95 | + - name: Setup image and run bats tests |
| 96 | + working-directory: release |
| 97 | + run: .github/jobs/configure-checks/setup_configure_image.sh |
| 98 | + |
33 | 99 | redhat-family:
|
34 | 100 | needs: build
|
35 | 101 | strategy:
|
|
0 commit comments