38 lines
1.2 KiB
YAML
38 lines
1.2 KiB
YAML
name: Docker Runner check
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/docker-runner-check.yml
|
|
- Dockerfile
|
|
- .dockerignore
|
|
- packages/paperclip-runner/rust-toolchain.toml
|
|
- packages/paperclip-runner/runner/**
|
|
- packages/paperclip-runner/protocol/**
|
|
|
|
permissions: {}
|
|
|
|
concurrency:
|
|
group: docker-runner-check-${{ github.event.pull_request.number }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
runner:
|
|
name: Compile isolated native Runner
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
with:
|
|
persist-credentials: false
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@37fe631027851001ddb9b187196cc803df7f5f0e # v4
|
|
# Compile the real target with the real .dockerignore. This catches new
|
|
# Cargo or embedded protocol inputs that the isolated COPY set omits.
|
|
# No registry credentials, cache imports/exports, or image publication.
|
|
- name: Compile the Runner from its isolated Docker context
|
|
run: docker buildx build --target runner-build --progress plain .
|