77 lines
2.8 KiB
YAML
77 lines
2.8 KiB
YAML
name: PR - Docker build test
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '.github/workflows/docker-test.yml'
|
|
- 'lib/**'
|
|
- 'Dockerfile'
|
|
- 'package.json'
|
|
- 'pnpm-lock.yaml'
|
|
types: [opened, reopened, synchronize, edited]
|
|
# Please, always create a pull request instead of push to master.
|
|
|
|
concurrency:
|
|
group: docker-test-${{ github.ref_name }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
name: Docker build & tests
|
|
permissions:
|
|
pull-requests: write
|
|
attestations: write
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Set up Docker Buildx # needed by `cache-from`
|
|
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
|
|
|
|
- name: Extract Docker metadata
|
|
id: meta
|
|
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
|
|
with:
|
|
images: rsshub
|
|
flavor: latest=true
|
|
|
|
- name: Build Docker image
|
|
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
|
|
with:
|
|
context: .
|
|
build-args: PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=0 # also test bundling Chromium
|
|
load: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
platforms: linux/amd64 # explicit
|
|
cache-from: |
|
|
type=registry,ref=${{ vars.DOCKER_USERNAME }}/rsshub:chromium-bundled
|
|
type=gha,scope=docker-release-linux-amd64
|
|
outputs: type=docker,compression=zstd,force-compression=true # load: true means docker output type
|
|
|
|
- name: Pull Request Labeler
|
|
if: ${{ failure() }}
|
|
uses: actions-cool/issues-helper@200c78641dbf33838311e5a1e0c31bbdb92d7cf0 # v3.8.0
|
|
with:
|
|
actions: 'add-labels'
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
labels: 'auto: DO NOT merge'
|
|
|
|
- name: Test Docker image
|
|
run: bash scripts/docker/test-docker.sh
|
|
|
|
- name: Export Docker image
|
|
run: docker save rsshub:latest | zstdmt -o rsshub.tar.zst
|
|
|
|
- name: Upload Docker image
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: docker-image
|
|
path: rsshub.tar.zst
|
|
retention-days: 1
|