Docker nightly build #1320
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: Docker nightly build | |
on: | |
schedule: | |
- cron: '0 1 * * *' | |
workflow_dispatch: | |
jobs: | |
build_image: | |
name: Build Docker images | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup QEMU | |
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | |
- name: Download aom-dev | |
run: | | |
wget https://github.com/Brooooooklyn/canvas/releases/download/libaom-v3.5.0/aom-aarch64-linux-musl.tar | |
tar -xvf aom-aarch64-linux-musl.tar | |
rm aom-aarch64-linux-musl.tar | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.GH_CONTAINER_UNAME }} | |
password: ${{ secrets.GH_TOKEN }} | |
- name: Build docker image | |
run: | | |
docker build . --pull --no-cache -t ghcr.io/brooooooklyn/canvas/ubuntu-builder:jammy | |
docker build . --pull --no-cache -f musl.Dockerfile -t ghcr.io/brooooooklyn/canvas/musl-builder:lts | |
- name: Push docker image | |
run: | | |
docker push ghcr.io/brooooooklyn/canvas/ubuntu-builder:jammy | |
docker push ghcr.io/brooooooklyn/canvas/musl-builder:lts | |
- name: Install latest libc++-dev for cross build | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: ubuntu:jammy | |
options: '--platform linux/arm64 --user 0:0 -e GITHUB_TOKEN -v ${{ github.workspace }}/lib/llvm-18:/usr/lib/llvm-18' | |
run: >- | |
apt-get update && | |
apt-get install -y wget gnupg2 && | |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && | |
echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main" >> /etc/apt/sources.list && | |
echo "deb-src http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main" >> /etc/apt/sources.list && | |
apt-get update && | |
apt-get install libc++-18-dev libc++abi-18-dev -y --fix-missing --no-install-recommends && | |
rm /usr/lib/llvm-18/lib/libc++abi.so && | |
rm /usr/lib/llvm-18/lib/libunwind.so && | |
rm /usr/lib/llvm-18/lib/libc++.so | |
- name: Build and push Linux aarch64 | |
uses: docker/build-push-action@v6 | |
with: | |
file: aarch64.Dockerfile | |
context: . | |
platforms: linux/amd64 | |
push: true | |
tags: ghcr.io/brooooooklyn/canvas/ubuntu-builder:jammy-aarch64 |