chore: Update akmods module to account for upstream changes #380
Workflow file for this run
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: Earthly PR +build | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
build: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
outputs: | |
export: ${{ steps.build.outputs.export }} | |
steps: | |
- name: Maximize build space | |
uses: ublue-os/remove-unwanted-software@v6 | |
env: | |
EARTHLY_SAT_TOKEN: ${{ secrets.EARTHLY_SAT_TOKEN }} | |
if: env.EARTHLY_SAT_TOKEN == null | |
- uses: earthly/actions-setup@v1 | |
- name: Earthly login | |
env: | |
EARTHLY_SAT_TOKEN: ${{ secrets.EARTHLY_SAT_TOKEN }} | |
if: env.EARTHLY_SAT_TOKEN != null | |
run: | | |
earthly account login --token ${{ secrets.EARTHLY_SAT_TOKEN }} >> /dev/null | |
earthly org s blue-build | |
earthly sat s blue-build-pr | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.ref }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
if: github.token != null | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ github.token }} | |
- name: Run build | |
id: build | |
run: | | |
if [ -n "${{ github.token }}" ]; then | |
earthly --ci --push +exports-script | |
echo "export=true" >> "$GITHUB_OUTPUT" | |
fi | |
earthly --ci +build | |
integration-tests: | |
permissions: | |
packages: write | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
if: needs.build.outputs.export == 'true' | |
steps: | |
- name: Maximize build space | |
uses: ublue-os/remove-unwanted-software@v6 | |
env: | |
EARTHLY_SAT_TOKEN: ${{ secrets.EARTHLY_SAT_TOKEN }} | |
if: env.EARTHLY_SAT_TOKEN == null | |
- uses: earthly/actions-setup@v1 | |
- name: Earthly login | |
env: | |
EARTHLY_SAT_TOKEN: ${{ secrets.EARTHLY_SAT_TOKEN }} | |
if: env.EARTHLY_SAT_TOKEN != null | |
run: | | |
earthly account login --token ${{ secrets.EARTHLY_SAT_TOKEN }} >> /dev/null | |
earthly org s blue-build | |
earthly sat s blue-build-integration-tests | |
# Setup repo and add caching | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.ref }} | |
- name: Run integration tests | |
run: earthly --ci -P ./integration-tests+all | |
docker-build: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
needs: | |
- build | |
if: needs.build.outputs.export == 'true' | |
steps: | |
- name: Maximize build space | |
uses: ublue-os/remove-unwanted-software@v6 | |
- uses: sigstore/cosign-installer@v3.3.0 | |
- uses: earthly/actions-setup@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
install: true | |
- name: Earthly login | |
env: | |
EARTHLY_SAT_TOKEN: ${{ secrets.EARTHLY_SAT_TOKEN }} | |
if: env.EARTHLY_SAT_TOKEN != null | |
run: | | |
earthly account login --token ${{ secrets.EARTHLY_SAT_TOKEN }} >> /dev/null | |
earthly org s blue-build | |
earthly sat s blue-build-pr | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.ref }} | |
- name: Install bluebuild | |
run: | | |
earthly -a +installer/bluebuild /usr/local/bin/bluebuild | |
- name: Expose GitHub Runtime | |
uses: crazy-max/ghaction-github-runtime@v3 | |
- name: Run Build | |
env: | |
GH_TOKEN: ${{ github.token }} | |
GH_PR_EVENT_NUMBER: ${{ github.event.number }} | |
COSIGN_PRIVATE_KEY: ${{ secrets.TEST_SIGNING_SECRET }} | |
BB_BUILDKIT_CACHE_GHA: true | |
run: | | |
cd integration-tests/test-repo | |
bluebuild template -vv | tee Containerfile | |
grep -q 'ARG IMAGE_REGISTRY=ghcr.io/blue-build' Containerfile || exit 1 | |
bluebuild build --push -vv |