CI for building Servo docker image
All checks were successful
Build Servo Image / build (push) Successful in 47s

This commit is contained in:
Gabriel Simmer 2024-08-01 10:02:10 +01:00
parent fc2a5832d7
commit 2ebc0774d9
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ
3 changed files with 48 additions and 17 deletions

View file

@ -1,17 +0,0 @@
name: Lint
on: [push]
jobs:
lint:
runs-on: debian-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
with:
ref: trunk
- name: Lint Code Base
uses: https://github.com/super-linter/super-linter/slim@v5
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: trunk
KUBERNETES_KUBEVAL_OPTIONS: "--schema-location https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/ --ignore-missing-schemas"

View file

@ -0,0 +1,33 @@
name: Build Servo Image
on:
schedule:
- cron: "0 1 * * *"
push:
paths:
- 'dockerfiles/Dockerfile.servo'
- '.forgejo/workflows/render-servo.yml'
jobs:
build:
runs-on: vancouver
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
with:
ref: trunk
- name: Login to Registry
uses: https://github.com/docker/login-action@v3
with:
registry: git.gmem.ca/arch
username: arch
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: https://github.com/docker/setup-buildx-action@v3
with:
endpoint: "unix:///var/run/docker.sock"
driver-opts: network=host
buildkitd-config-inline: |
[dns]
nameservers=["1.1.1.1", "1.0.0.1" ]
- name: Docker Build
run: docker build . -f dockerfiles/Dockerfile.servo -t git.gmem.ca/arch/servo:latest -t git.gmem.ca/arch/servo:$(date -I) --push --progress=plain --builder=${{ steps.buildx.outputs.name }}

View file

@ -0,0 +1,15 @@
FROM docker.io/debian:bookworm-slim
RUN apt update && apt upgrade && \
apt install -y curl libunwind8 libfontconfig1 libx11-6 libwayland-client0 \
mesa-utils libgl1-mesa-glx xkb-data libxkbcommon-x11-0 && \
apt-get clean autoclean && \
apt-get autoremove --yes && \
rm -rf /var/lib/{apt,dpkg,cache,log}/
RUN curl -LO https://download.servo.org/nightly/linux/servo-latest.tar.gz && \
tar -xvf servo-latest.tar.gz && \
mv servo /opt && ln -s /opt/servo/servo /usr/local/bin && \
rm servo-latest.tar.gz
ENTRYPOINT ["/usr/local/bin/servo"]