Skip to content

Commit

Permalink
Merge branch 'release/alpine-0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Jul 8, 2024
2 parents 81a8d4b + afdd838 commit 53a3174
Showing 1 changed file with 64 additions and 7 deletions.
71 changes: 64 additions & 7 deletions .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
fail-fast: false
matrix:
release: [
# {distro: "alpine", version: "3.16"},
# {distro: "alpine", version: "3.17"},
# {distro: "alpine", version: "3.18"},
# {distro: "alpine", version: "3.19"},
{distro: "alpine", version: "3.16"},
{distro: "alpine", version: "3.17"},
{distro: "alpine", version: "3.18"},
{distro: "alpine", version: "3.19"},
{distro: "alpine", version: "3.20"}
# {distro: "alpine", version: "edge"}
{distro: "alpine", version: "edge"}
]
os: [
{arch: "aarch64", builder: "ubicloud-standard-2-arm"},
Expand All @@ -33,7 +33,7 @@ jobs:
fetch-depth: 0

- name: Setup IcePAK
uses: upmaru/icepak@v0
uses: upmaru/icepak@v1
with:
alpine: v3.19
arch: ${{matrix.os.arch}}
Expand All @@ -57,4 +57,61 @@ jobs:
env:
POLAR_AUTH_TOKEN: ${{ secrets.POLAR_AUTH_TOKEN }}
POLAR_ENDPOINT: ${{ vars.POLAR_ENDPOINT }}

TESTING_IMAGE_SERVER: ${{ secrets.TESTING_IMAGE_SERVER }}

- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: ${{matrix.release.distro}}-${{matrix.os.arch}}-${{matrix.release.version}}-${{github.run_number}}
path: |
${{ github.workspace }}/incus.tar.xz
${{ github.workspace }}/disk.qcow2
${{ github.workspace }}/rootfs.squashfs
retention-days: 5

test:
needs: build
strategy:
max-parallel: 1
fail-fast: false
matrix:
release: [
{distro: "alpine", version: "3.16", checks: "ipv4,ipv6"},
{distro: "alpine", version: "3.17", checks: "ipv4,ipv6"},
{distro: "alpine", version: "3.18", checks: "ipv4,ipv6"},
{distro: "alpine", version: "3.19", checks: "ipv4,ipv6"},
{distro: "alpine", version: "3.20", checks: "ipv4,ipv6"},
{distro: "alpine", version: "edge", checks: "ipv4,ipv6"}
]
os: [
{arch: "aarch64", builder: "ubicloud-standard-2-arm"},
{arch: "x86_64", builder: "warp-ubuntu-latest-x64-2x"}
]

runs-on: ${{matrix.os.builder}}
env:
ImageOS: ubuntu22
steps:
- uses: actions/download-artifact@v4
with:
name: ${{matrix.release.distro}}-${{matrix.os.arch}}-${{matrix.release.version}}-${{github.run_number}}

- name: Setup IcePAK
uses: upmaru/icepak@v1
with:
alpine: v3.19
arch: ${{matrix.os.arch}}

- name: Generate Serial
id: generate-serial
run: |
echo "serial=$(date +'%Y%m%d')-$GITHUB_RUN_NUMBER" >> $GITHUB_OUTPUT
- name: Test
run: |
icepak validate --serial ${{ steps.generate-serial.outputs.serial }} --os ${{matrix.release.distro}} --arch ${{matrix.os.arch}} --release ${{matrix.release.version}} --variant default --checks ${{matrix.release.checks}}
shell: alpine.sh {0}
env:
POLAR_AUTH_TOKEN: ${{ secrets.POLAR_AUTH_TOKEN }}
POLAR_ENDPOINT: ${{ vars.POLAR_ENDPOINT }}
TESTING_IMAGE_SERVER: ${{ secrets.TESTING_IMAGE_SERVER }}

0 comments on commit 53a3174

Please sign in to comment.