Merge branch 'main' of https://github.com/Code-at-Java/Malcolm #1
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: hedgehog-raspi-build-docker-wrap-push-ghcr | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - staging | |
| paths: | |
| - 'malcolm-iso/**' | |
| - 'hedgehog-raspi/**' | |
| - 'shared/bin/*' | |
| - '.trigger_iso_workflow_build' | |
| - '.github/workflows/hedgehog-raspi-build-docker-wrap-push-ghcr.yml' | |
| workflow_dispatch: | |
| repository_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| permissions: | |
| actions: write | |
| packages: write | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| include: | |
| - os: ubuntu-24.04-arm | |
| arch: arm64 | |
| platform: linux/arm64 | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - | |
| name: Cancel previous run in progress | |
| uses: styfle/cancel-workflow-action@0.13.0 | |
| with: | |
| ignore_sha: true | |
| all_but_latest: true | |
| access_token: ${{ secrets.GITHUB_TOKEN }} | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| with: | |
| driver-opts: | | |
| image=moby/buildkit:master | |
| - | |
| name: Build environment setup | |
| run: | | |
| sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true | |
| sudo rm -rf \ | |
| "$AGENT_TOOLSDIRECTORY" \ | |
| /opt/ghc \ | |
| /usr/lib/jvm \ | |
| /usr/local/.ghcup \ | |
| /usr/local/lib/android \ | |
| /usr/local/share/powershell \ | |
| /usr/share/dotnet \ | |
| /usr/share/swift >/dev/null 2>&1 || true | |
| sudo env DEBIAN_FRONTEND=noninteractive apt-get -q -y update >/dev/null 2>&1 | |
| sudo env DEBIAN_FRONTEND=noninteractive apt-get -q -y --purge remove \ | |
| azure-cli \ | |
| dotnet* \ | |
| firefox \ | |
| google-chrome-stable \ | |
| google-cloud-cli \ | |
| microsoft-edge-stable \ | |
| mono-* \ | |
| mysql* \ | |
| postgresql* \ | |
| powershell \ | |
| temurin* >/dev/null 2>&1 || true | |
| sudo env DEBIAN_FRONTEND=noninteractive apt-get -q -y --purge autoremove >/dev/null 2>&1 || true | |
| sudo env DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y -q \ | |
| binfmt-support \ | |
| bmap-tools \ | |
| ca-certificates \ | |
| debootstrap \ | |
| dosfstools \ | |
| kpartx \ | |
| python3 \ | |
| qemu-user-static \ | |
| qemu-utils \ | |
| time \ | |
| vmdb2 \ | |
| zerofree | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| - | |
| name: Extract branch name | |
| shell: bash | |
| run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT | |
| id: extract_branch | |
| - | |
| name: Generate arch tag suffix | |
| shell: bash | |
| run: echo "archtag=$([[ "${{ matrix.platform }}" == 'linux/amd64' ]] && echo '' || ( echo -n '-' ; echo "${{ matrix.platform }}" | cut -d '/' -f 2) )" >> $GITHUB_OUTPUT | |
| id: arch_tag_suffix | |
| - | |
| name: Extract commit SHA | |
| shell: bash | |
| run: echo "sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
| id: extract_commit_sha | |
| - | |
| name: Extract Malcolm version | |
| shell: bash | |
| run: echo "mversion=$(grep -P "^\s+image:.*/malcolm/" docker-compose-dev.yml | awk '{print $2}' | cut -d':' -f2 | uniq -c | sort -nr | awk '{print $2}' | head -n 1)" >> $GITHUB_OUTPUT | |
| id: extract_malcolm_version | |
| - | |
| name: Build image | |
| run: | | |
| pushd ./hedgehog-raspi | |
| mkdir -p ./shared | |
| echo "${{ steps.extract_malcolm_version.outputs.mversion }}" > ./shared/version.txt | |
| echo "${{ secrets.MAXMIND_GEOIP_DB_LICENSE_KEY }}" > ./shared/maxmind_license.txt | |
| echo "${{ secrets.MAXMIND_GEOIP_DB_ALTERNATE_DOWNLOAD_URL }}" > ./shared/maxmind_url.txt | |
| echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" > ./shared/environment.chroot | |
| echo "VCS_REVSION=${{ steps.extract_commit_sha.outputs.sha }}" > ./shared/environment.chroot | |
| echo "BUILD_JOBS=2" > ./shared/environment.chroot | |
| sudo make raspi_4_trixie.img.xz | |
| sudo rm -f raspi_4_trixie.img | |
| sudo chmod 644 ./raspi_4_trixie*.* | |
| popd | |
| - | |
| name: ghcr.io login | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - | |
| name: Build and push IMG image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: ./hedgehog-raspi | |
| push: true | |
| provenance: false | |
| platforms: ${{ matrix.platform }} | |
| tags: ghcr.io/${{ github.repository_owner }}/malcolm/hedgehog-raspi:${{ steps.extract_branch.outputs.branch }}${{ steps.arch_tag_suffix.outputs.archtag }} |