Skip to content

build kernels on CI #26

build kernels on CI

build kernels on CI #26

Workflow file for this run

name: Build and Push Images
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
packages: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
read-config:
runs-on: ubuntu-latest
outputs:
kernel: ${{ steps.kernel.outputs.config }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Read versions.json
id: kernel
run: |
{
echo "config<<EOF"
cat versions.json
echo -e "\nEOF"
} | tee -a "$GITHUB_OUTPUT"
build-and-push:
runs-on: ubuntu-latest
needs: read-config
strategy:
matrix:
kernel_version: ${{ fromJSON(needs.read-config.outputs.kernel).versions }}
env:
latest_stable: ${{ fromJSON(needs.read-config.outputs.kernel).latest_stable }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache ccache output
uses: actions/cache@v3
with:
path: ccache
key: ccache-${{ matrix.kernel_version }}-amd64-${{ hashFiles('config') }}
- name: Inject ccache into builder
uses: reproducible-containers/[email protected]
with:
cache-source: ccache
cache-target: /root/.ccache
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/ci-kernels
tags: |
type=semver,pattern={{version}},value=v${{ matrix.kernel_version }}
type=semver,pattern={{major}}.{{minor}},value=v${{ matrix.kernel_version }},enable=${{ !contains(matrix.kernel_version, '-rc') }}
- name: Log in to GitHub Container Registry
if: github.ref == 'refs/heads/master'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
uses: docker/build-push-action@v5
with:
target: vmlinux
platforms: |
linux/amd64
${{ matrix.kernel_version == env.latest_stable && 'linux/arm64' || '' }}
build-args: |
KERNEL_VERSION=${{ matrix.kernel_version }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: ${{ github.ref == 'refs/heads/master' }}
- name: Build selftests
if: matrix.kernel_version == env.latest_stable
uses: docker/build-push-action@v5
with:
target: vmlinux
platforms: |
linux/amd64
build-args: |
KERNEL_VERSION=${{ matrix.kernel_version }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: ${{ github.ref == 'refs/heads/master' }}
build-arm64:
runs-on: ubuntu-latest
needs: read-config
env:
latest_version: ${{ fromJSON(needs.read-config.outputs.kernel).versions[0] }}
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache ccache output
uses: actions/cache@v3
with:
path: ccache
key: ccache-${{ matrix.kernel_version }}-arm64-${{ hashFiles('config') }}
- name: Inject ccache into builder
uses: reproducible-containers/[email protected]
with:
cache-source: ccache
cache-target: /root/.ccache
- name: Build
uses: docker/build-push-action@v5
with:
target: vmlinux
platforms: linux/arm64
build-args: |
KERNEL_VERSION=${{ env.latest_version }}