Add net-snmp base image as CI prerequisite
The ensure-netsnmp-base jobs check if the pre-built image exists in GHCR before any Docker builds start. First run compiles from source on native runners (~5 min), subsequent runs skip with a ~5s check. build-branch and build-release now depend on ensure-netsnmp-manifest.
This commit is contained in:
parent
2386f0d5a5
commit
0b0d326892
1 changed files with 85 additions and 2 deletions
87
.github/workflows/ci.yml
vendored
87
.github/workflows/ci.yml
vendored
|
|
@ -22,10 +22,93 @@ env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
IMAGE_NAME: ${{ github.repository }}
|
||||||
DOCKERHUB_IMAGE: gmcintire/towerops-agent
|
DOCKERHUB_IMAGE: gmcintire/towerops-agent
|
||||||
|
NETSNMP_IMAGE: ghcr.io/towerops-app/netsnmp-alpine:5.9.5.2
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
RUSTFLAGS: -C link-arg=-fuse-ld=lld
|
RUSTFLAGS: -C link-arg=-fuse-ld=lld
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
# Ensure the pre-built net-snmp base image exists in GHCR.
|
||||||
|
# First run: builds from source (~5 min per arch). After that: skips (~5s check).
|
||||||
|
ensure-netsnmp-base:
|
||||||
|
name: Ensure net-snmp base (${{ matrix.arch }})
|
||||||
|
runs-on: ${{ matrix.runner }}
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- arch: amd64
|
||||||
|
runner: blacksmith-4vcpu-ubuntu-2404
|
||||||
|
- arch: arm64
|
||||||
|
runner: blacksmith-4vcpu-ubuntu-2404-arm
|
||||||
|
steps:
|
||||||
|
- name: Log in to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Check if base image exists
|
||||||
|
id: check
|
||||||
|
run: |
|
||||||
|
if docker buildx imagetools inspect ${{ env.NETSNMP_IMAGE }}-${{ matrix.arch }} > /dev/null 2>&1; then
|
||||||
|
echo "exists=true" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "exists=false" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
if: steps.check.outputs.exists == 'false'
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Blacksmith Builder
|
||||||
|
if: steps.check.outputs.exists == 'false'
|
||||||
|
uses: useblacksmith/setup-docker-builder@v1
|
||||||
|
|
||||||
|
- name: Build and push base image
|
||||||
|
if: steps.check.outputs.exists == 'false'
|
||||||
|
uses: useblacksmith/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: Dockerfile.netsnmp
|
||||||
|
push: true
|
||||||
|
provenance: false
|
||||||
|
tags: ${{ env.NETSNMP_IMAGE }}-${{ matrix.arch }}
|
||||||
|
|
||||||
|
ensure-netsnmp-manifest:
|
||||||
|
name: Ensure net-snmp manifest
|
||||||
|
needs: ensure-netsnmp-base
|
||||||
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
||||||
|
permissions:
|
||||||
|
packages: write
|
||||||
|
steps:
|
||||||
|
- name: Log in to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Check if manifest exists
|
||||||
|
id: check
|
||||||
|
run: |
|
||||||
|
if docker buildx imagetools inspect ${{ env.NETSNMP_IMAGE }} > /dev/null 2>&1; then
|
||||||
|
echo "exists=true" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "exists=false" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Create multi-arch manifest
|
||||||
|
if: steps.check.outputs.exists == 'false'
|
||||||
|
run: |
|
||||||
|
docker buildx imagetools create \
|
||||||
|
-t ${{ env.NETSNMP_IMAGE }} \
|
||||||
|
${{ env.NETSNMP_IMAGE }}-amd64 \
|
||||||
|
${{ env.NETSNMP_IMAGE }}-arm64
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: Test
|
name: Test
|
||||||
runs-on: blacksmith-4vcpu-ubuntu-2404
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
||||||
|
|
@ -84,7 +167,7 @@ jobs:
|
||||||
|
|
||||||
build-branch:
|
build-branch:
|
||||||
name: Build (Branch)
|
name: Build (Branch)
|
||||||
needs: test
|
needs: [test, ensure-netsnmp-manifest]
|
||||||
runs-on: blacksmith-4vcpu-ubuntu-2404
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
||||||
if: github.event_name == 'push' && github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/')
|
if: github.event_name == 'push' && github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/')
|
||||||
permissions:
|
permissions:
|
||||||
|
|
@ -157,7 +240,7 @@ jobs:
|
||||||
# Build architecture-specific images in parallel (native runners)
|
# Build architecture-specific images in parallel (native runners)
|
||||||
build-release:
|
build-release:
|
||||||
name: Build (${{ matrix.arch }})
|
name: Build (${{ matrix.arch }})
|
||||||
needs: [test, version]
|
needs: [test, version, ensure-netsnmp-manifest]
|
||||||
runs-on: ${{ matrix.runner }}
|
runs-on: ${{ matrix.runner }}
|
||||||
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
|
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
|
||||||
permissions:
|
permissions:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue