Add cheating bootstrap CI container, with gocheckout pre-installed
Some checks failed
CI / build-docker (push) Failing after 8s
CI / release-test (push) Failing after 19s
CI / build-docker-bootstrap (push) Failing after 1s

This commit is contained in:
2025-11-08 23:05:38 -08:00
parent 4c266ce336
commit be351bbb7d
2 changed files with 26 additions and 3 deletions

View File

@@ -3,10 +3,32 @@ name: CI
on: [push]
jobs:
# This step builds the `gas/ci` docker image.
# There's a tricky bootstrapping problem here. Let's use Alpine and install `gocheckout` first
# thing.
# These steps build the `gas/ci` docker image.
# There's a tricky bootstrapping problem here. We'll try to cheat first, and if that doesn't
# work, then we'll do a full bootstrapping build starting from Alpine and installing `gocheckout`
# first thing.
build-docker:
container:
image: gas/ci
volumes:
- woodpecker-gocache:/go-cache-volume
env:
GOPATH: /go-cache-volume
GOCACHE: /go-cache-volume/build-cache
steps:
- name: checkout
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gocheckout
- name: build CI container
run: docker build -t gas/ci ops/devcontainer
# Fallback: full bootstrap build. This one is quite slow.
build-docker-bootstrap:
needs: build-docker
if: ${{ needs.build-docker.result == "failure" }}
container:
image: alpine:3.22
volumes: