Build images #141
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 images | |
on: | |
workflow_dispatch: # manual trigger | |
schedule: | |
# 4AM every monday, matches upstream weekly builds on sunday | |
- cron: "0 4 * * MON" | |
push: | |
branches: ["main"] | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
base-images: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
tag: | |
- arch | |
- fedora | |
- ubuntu | |
steps: | |
# the arch container is really big now... | |
# remove some huge packages to free up space | |
# inspired by https://github.com/easimon/maximize-build-space | |
- name: Maximize build space | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /usr/local/lib/android | |
sudo rm -rf /opt/ghc | |
sudo rm -rf /opt/hostedtoolcache/CodeQL | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install newer Buildah | |
run: ./install-buildah-from-sid.sh | |
- name: Install other deps for local Act | |
if: ${{ env.ACT }} | |
run: | | |
apt install -y podman | |
- name: Build Image | |
id: build_image | |
uses: redhat-actions/buildah-build@main | |
with: | |
image: ${{ github.repository }} | |
tags: ${{ matrix.tag }} | |
context: ${{ matrix.tag }} | |
containerfiles: ./${{ matrix.tag }}/Containerfile | |
- name: Push To GHCR | |
uses: redhat-actions/push-to-registry@main | |
id: push-ghcr | |
with: | |
registry: ghcr.io | |
image: ${{ steps.build_image.outputs.image }} | |
tags: ${{ steps.build_image.outputs.tags }} | |
username: ${{ github.actor }} | |
password: ${{ github.token }} | |
# try to extra-compress layers since these are big images | |
extra-args: | | |
--compression-format=zstd | |
--compression-level=20 | |
deriv-images: | |
runs-on: ubuntu-24.04 | |
needs: base-images | |
strategy: | |
matrix: | |
tag: | |
- zed | |
- vr | |
steps: | |
# the arch container is really big now... | |
# remove some huge packages to free up space | |
# inspired by https://github.com/easimon/maximize-build-space | |
- name: Maximize build space | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /usr/local/lib/android | |
sudo rm -rf /opt/ghc | |
sudo rm -rf /opt/hostedtoolcache/CodeQL | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install newer Buildah | |
run: ./install-buildah-from-sid.sh | |
- name: Build Image | |
id: build_image | |
uses: redhat-actions/buildah-build@main | |
with: | |
image: ${{ github.repository }} | |
tags: ${{ matrix.tag }} | |
context: ${{ matrix.tag }} | |
containerfiles: ./${{ matrix.tag }}/Containerfile | |
- name: Push To GHCR | |
uses: redhat-actions/push-to-registry@main | |
id: push-ghcr | |
with: | |
registry: ghcr.io | |
image: ${{ steps.build_image.outputs.image }} | |
tags: ${{ steps.build_image.outputs.tags }} | |
username: ${{ github.actor }} | |
password: ${{ github.token }} | |
# try to extra-compress layers since these are big images | |
extra-args: | | |
--compression-format=zstd | |
--compression-level=20 |