ci(feat): add mkosi os image building #20
This file contains hidden or 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 OS | |
| on: | |
| schedule: | |
| - cron: '0 16 * * *' # Daily at 8am PST / 4pm UTC | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'deps/mkosi/**' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'deps/mkosi/**' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| build-os-image: | |
| runs-on: | |
| - ${{ matrix.os }} | |
| container: | |
| image: public.ecr.aws/docker/library/fedora:43 | |
| options: --privileged | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-24.04, ubuntu-24.04-arm] | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Install packages | |
| run: | | |
| dnf install -y git \ | |
| systemd-boot \ | |
| systemd-repart \ | |
| systemd-ukify \ | |
| qemu-img \ | |
| docker \ | |
| jq \ | |
| e2fsprogs \ | |
| dosfstools \ | |
| cpio \ | |
| zstd \ | |
| procps-ng \ | |
| distribution-gpg-keys \ | |
| openssl \ | |
| mtools \ | |
| skopeo \ | |
| awscli2 | |
| - name: Checkout repo | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| submodules: true | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4.3.1 | |
| with: | |
| role-to-assume: ${{ secrets.ROLE }} | |
| aws-region: ${{ secrets.REGION }} | |
| role-session-name: rootfs-ecr-image-upload-session | |
| - name: Login to Amazon ECR | |
| uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1 | |
| - name: Install mkosi | |
| run: | | |
| mkdir -p "$HOME/.local/bin/" | |
| export PATH="/root/.local/bin/:$PATH" | |
| ./deps/mkosi/install-mkosi.sh | |
| - name: mkosi arch | |
| id: mkosi-arch | |
| shell: bash | |
| run: | | |
| arch="" | |
| if [ "$(uname -m)" == "aarch64" ]; then | |
| arch="arm64" | |
| else | |
| arch="x86-64" | |
| fi | |
| echo "arch=${arch}" >> $GITHUB_OUTPUT | |
| - name: Fix git permissions | |
| run: | | |
| git config --global --add safe.directory "${GITHUB_WORKSPACE}" | |
| - name: Build QEMU | |
| run: | | |
| ln -s "$HOME/.docker" /root/.docker | |
| export ECR_CACHE_REPO="${{ secrets.ECR_CACHE_REPO }}" | |
| ./deps/mkosi/scripts/build-qemu.sh | |
| - name: Setup binary packages | |
| run: | | |
| ./deps/mkosi/scripts/bin-packages.sh | |
| - name: Build custom AL packages | |
| run: | | |
| ln -s "$HOME/.docker" /root/.docker | |
| ./deps/mkosi/scripts/al2023-package-build.sh | |
| - name: Build OS image | |
| run: | | |
| arch="${{ steps.mkosi-arch.outputs.arch }}" | |
| export PATH="$HOME/.local/bin/:$PATH" | |
| ./deps/mkosi/mkosi.sh --arch "${arch}" -- --image-id os-image | |
| - name: Convert OS image | |
| run: | | |
| arch="${{ steps.mkosi-arch.outputs.arch }}" | |
| sudo qemu-img convert -f raw -c -O qcow2 "./deps/mkosi/out/${arch}/os-image.raw" \ | |
| "./deps/mkosi/out/${arch}/os-image.qcow2" | |
| - name: Calculate SHA512 checksum for OS image | |
| run: | | |
| arch="${{ steps.mkosi-arch.outputs.arch }}" | |
| cd "./deps/mkosi/out/${arch}" | |
| sha512sum os-image.qcow2 | cut -d ' ' -f 1 > os-image.qcow2.sha512sum | |
| - name: Upload OS image to S3 | |
| run: | | |
| arch="${{ steps.mkosi-arch.outputs.arch }}" | |
| filename="finch-al2023-os-image-${arch}-${{ github.run_id }}.qcow2" | |
| aws s3 cp "./deps/mkosi/out/${arch}/os-image.qcow2" \ | |
| "s3://${{ secrets.DEPENDENCY_BUCKET_NAME }}/${filename}" \ | |
| --region "${{ secrets.DEPENDENCY_BUCKET_REGION }}" | |
| aws s3 cp "./deps/mkosi/out/${arch}/os-image.qcow2.sha512sum" \ | |
| "s3://${{ secrets.DEPENDENCY_BUCKET_NAME }}/${filename}.sha512sum" \ | |
| --region "${{ secrets.DEPENDENCY_BUCKET_REGION }}" | |
| - name: Push OS image | |
| run: | | |
| arch="${{ steps.mkosi-arch.outputs.arch }}" | |
| tar -cvf "./deps/mkosi/out/${arch}/container-with-kernel-image.tar" -C "./deps/mkosi/out/${arch}/container-with-kernel" . | |
| skopeo copy \ | |
| "oci-archive:./deps/mkosi/out/${arch}/container-with-kernel-image.tar" \ | |
| docker://"${{ secrets.ROOTFS_IMAGE_ECR_REPOSITORY_NAME }}:${{ steps.mkosi-arch.outputs.arch }}-with-kernel-${{github.run_id}}" | |
| - name: Run container build | |
| if: steps.mkosi-arch.outputs.arch == 'x86-64' | |
| run: | | |
| export PATH="$HOME/.local/bin/:$PATH" | |
| ./deps/mkosi/mkosi.sh --arch x86-64 -- --image-id wsl-rootfs | |
| - name: Push rootfs image | |
| if: steps.mkosi-arch.outputs.arch == 'x86-64' | |
| run: | | |
| arch="${{ steps.mkosi-arch.outputs.arch }}" | |
| tar -cvf "./deps/mkosi/out/${arch}/wsl-rootfs-image.tar" -C "./deps/mkosi/out/${arch}/wsl-rootfs" . | |
| skopeo copy \ | |
| "oci-archive:./deps/mkosi/out/${arch}/wsl-rootfs-image.tar" \ | |
| docker://"${{ secrets.ROOTFS_IMAGE_ECR_REPOSITORY_NAME }}:${{ steps.mkosi-arch.outputs.arch }}-wsl-rootfs-${{github.run_id}}" | |
| - name: Compress rootfs for S3 | |
| if: steps.mkosi-arch.outputs.arch == 'x86-64' | |
| run: | | |
| arch="${{ steps.mkosi-arch.outputs.arch }}" | |
| cd "./deps/mkosi/out/${arch}" | |
| tar -czf wsl-rootfs.tar.gz -C wsl-rootfs . | |
| - name: Calculate SHA512 checksum for rootfs | |
| if: steps.mkosi-arch.outputs.arch == 'x86-64' | |
| run: | | |
| arch="${{ steps.mkosi-arch.outputs.arch }}" | |
| cd "./deps/mkosi/out/${arch}" | |
| sha512sum wsl-rootfs.tar.gz | cut -d ' ' -f 1 > wsl-rootfs.tar.gz.sha512sum | |
| - name: Upload rootfs to S3 | |
| if: steps.mkosi-arch.outputs.arch == 'x86-64' | |
| run: | | |
| arch="${{ steps.mkosi-arch.outputs.arch }}" | |
| filename="finch-al2023-rootfs-${arch}-${{ github.run_id }}.tar.gz" | |
| aws s3 cp "./deps/mkosi/out/${arch}/wsl-rootfs.tar.gz" \ | |
| "s3://${{ secrets.DEPENDENCY_BUCKET_NAME }}/common/${arch}/${filename}" \ | |
| --region "${{ secrets.DEPENDENCY_BUCKET_REGION }}" | |
| aws s3 cp "./deps/mkosi/out/${arch}/wsl-rootfs.tar.gz.sha512sum" \ | |
| "s3://${{ secrets.DEPENDENCY_BUCKET_NAME }}/common/${arch}/${filename}.sha512sum" \ | |
| --region "${{ secrets.DEPENDENCY_BUCKET_REGION }}" | |
| - name: Upload container image artifacts | |
| if: steps.mkosi-arch.outputs.arch == 'x86-64' | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: image-oci-${{ steps.mkosi-arch.outputs.arch }}-${{github.run_id}}.tar | |
| path: ./deps/mkosi/out/${{ steps.mkosi-arch.outputs.arch }}/wsl-rootfs-image.tar | |
| if-no-files-found: error | |
| - name: Upload OS image artifacts | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: image-${{ steps.mkosi-arch.outputs.arch }}-${{github.run_id}}.qcow2 | |
| path: ./deps/mkosi/out/${{ steps.mkosi-arch.outputs.arch }}/os-image.qcow2 | |
| if-no-files-found: error | |
| update-deps-config: | |
| needs: build-os-image | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4.3.1 | |
| with: | |
| role-to-assume: ${{ secrets.ROLE }} | |
| aws-region: ${{ secrets.REGION }} | |
| role-session-name: update-deps-config-session | |
| - name: Run update-os-image script | |
| run: | | |
| bash bin/update-os-image.sh \ | |
| -d "${{ secrets.DEPENDENCY_BUCKET_NAME }}" | |
| - name: Run update-rootfs script | |
| run: | | |
| bash bin/update-rootfs.sh \ | |
| -d "${{ secrets.DEPENDENCY_BUCKET_NAME }}" | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 | |
| if: github.event_name != 'pull_request' | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| commit-message: "deps(os): update OS image to run ${{ github.run_id }}" | |
| title: "deps(os): update OS image" | |
| body: | | |
| This PR was automatically created by the [build-os workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}). | |
| Updates the OS image and rootfs artifacts in: | |
| - `deps/full-os.conf` (OS images for both architectures) | |
| - `deps/rootfs.conf` (rootfs for x86-64) | |
| branch: deps/update-os-image-${{ github.run_id }} | |
| delete-branch: true |