We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e95dd2 commit 0974e29Copy full SHA for 0974e29
.github/workflows/espresso-docker.yml
@@ -16,6 +16,7 @@ run-name: Docker build CI triggered from @${{ github.actor }} of ${{ github.head
16
on:
17
workflow_dispatch:
18
merge_group:
19
+ pull_request:
20
push:
21
branches:
22
- master
@@ -32,6 +33,8 @@ concurrency:
32
33
34
jobs:
35
docker_build:
36
+ # Don't run the arm build that uses a non-free runner on PRs
37
+ if: ${{ !(matrix.platform == 'linux/arm64' && github.event_name == 'pull_request') }}
38
strategy:
39
matrix:
40
platform: [linux/amd64, linux/arm64]
0 commit comments