use custom ci image

This commit is contained in:
sfja 2026-03-23 22:13:39 +01:00
parent b7831d9497
commit 56e3999c1e
3 changed files with 14 additions and 1 deletions

View File

@ -9,7 +9,7 @@ on:
jobs: jobs:
verify: verify:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: gcc:15 container: sfja/h5-mst-ci-backend
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@ -0,0 +1,3 @@
FROM alpine:3.14
RUN apk add gcc llvm

10
backend/ci-container/publish.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
tag=sfja/h5-mst-ci-backend
set -xe
docker build -t $tag .
docker push $tag