Noble arm64 #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
build_images: | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- dist: ubuntu | |
suite: bionic | |
major: 18 | |
arch: arm64 | |
- dist: ubuntu | |
suite: focal | |
major: 20 | |
arch: arm64 | |
- dist: ubuntu | |
suite: jammy | |
major: 22 | |
arch: arm64 | |
- dist: ubuntu | |
suite: noble | |
major: 24 | |
arch: arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout linux firmware | |
uses: actions/checkout@v4 | |
with: | |
repository: CirrusLogic/linux-firmware | |
path: git/linux-firmware | |
ref: cs35l56-20241031 | |
- name: Common dependencies | |
run: | | |
sudo apt-get -qq update | |
sudo apt-get install -y debootstrap qemu-user-static binfmt-support | |
sudo apt-get install -yqq ubuntu-keyring ubuntu-archive-keyring debian-keyring debian-archive-keyring | |
- name: Build image | |
run: | | |
./.github/ci_build.sh ${{ matrix.dist }} ${{ matrix.suite }} | |
ls -lh deploy/ | |
- name: Upload image | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.dist }}-${{ matrix.suite }}-${{ matrix.arch }} | |
path: deploy/${{ matrix.dist }}-${{ matrix.major }}*${{ matrix.arch }}*.tar.xz |