Build Ubuntu Images #240
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: Build Ubuntu Images | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Build amd64 (Daily at 00:00 UTC). | |
workflow_dispatch: | |
inputs: | |
publish: | |
type: boolean | |
default: false | |
description: Publish built image | |
jobs: | |
ubuntu: | |
if: github.event_name != 'schedule' || github.repository == 'canonical/lxd-ci' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
release: | |
- focal | |
- jammy | |
- noble | |
variant: | |
- desktop | |
# - default | |
# - cloud | |
architecture: | |
- amd64 | |
# - arm64 | |
exclude: | |
- {variant: desktop, architecture: arm64} | |
env: | |
type: "container" | |
distro: "${{ github.job }}" | |
target: "${HOME}/build" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: ./.github/actions/image-setup | |
- name: Determine image types | |
run: | | |
ARCH="${{ matrix.architecture }}" | |
if [ "${ARCH}" = "amd64" ]; then | |
echo "type=container,vm" >> $GITHUB_ENV | |
fi | |
if [ "${{ matrix.variant }}" = "desktop" ]; then | |
echo "type=vm" >> $GITHUB_ENV | |
fi | |
- name: Build image | |
run: | | |
TIMEOUT=3600 | |
YAML="${{ github.workspace }}/images/${{ env.distro }}.yaml" | |
ARCH="${{ matrix.architecture }}" | |
TYPE="${{ env.type }}" | |
ARCHIVE="http://archive.ubuntu.com/ubuntu" | |
if [ "${ARCH}" != "amd64" ] && [ "${ARCH}" != "i386" ]; then | |
ARCHIVE="http://ports.ubuntu.com/ubuntu-ports" | |
fi | |
./bin/build-distro "${YAML}" "${ARCH}" "${TYPE}" "${TIMEOUT}" "${{ env.target }}" \ | |
-o image.architecture=${{ matrix.architecture }} \ | |
-o image.release=${{ matrix.release }} \ | |
-o image.variant=${{ matrix.variant }} \ | |
-o source.url="${ARCHIVE}" | |
- name: Print build artifacts | |
run: ls -lah "${{ env.target }}" | |
- name: Test container image | |
uses: ./.github/actions/image-test | |
if: contains(env.type, 'container') | |
with: | |
type: container | |
target: ${{ env.target }} | |
distro: ${{ env.distro }} | |
release: ${{ matrix.release }} | |
variant: ${{ matrix.variant }} | |
- name: Test VM image | |
uses: ./.github/actions/image-test | |
if: contains(env.type, 'vm') | |
with: | |
type: vm | |
target: ${{ env.target }} | |
distro: ${{ env.distro }} | |
release: ${{ matrix.release }} | |
variant: ${{ matrix.variant }} | |
- name: Upload image | |
uses: ./.github/actions/image-upload | |
if: github.event_name == 'schedule' || inputs.publish == true | |
with: | |
target: ${{ env.target }} | |
image_dir: "${{ env.distro }}/${{ matrix.release }}/${{ matrix.architecture }}/${{ matrix.variant }}" | |
ssh_private_key: "${{ secrets.LXD_INFRA_IMAGES_KEY }}" |