forked from NVIDIA/OpenShell
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 764 Bytes
/
branch-e2e.yml
File metadata and controls
33 lines (28 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Branch E2E Checks
on:
pull_request:
types: [opened, synchronize, reopened, labeled]
permissions:
contents: read
packages: write
jobs:
build-gateway:
if: contains(github.event.pull_request.labels.*.name, 'test:e2e')
uses: ./.github/workflows/docker-build.yml
with:
component: gateway
platform: linux/arm64
runner: build-arm64
build-cluster:
if: contains(github.event.pull_request.labels.*.name, 'test:e2e')
uses: ./.github/workflows/docker-build.yml
with:
component: cluster
platform: linux/arm64
runner: build-arm64
e2e:
needs: [build-gateway, build-cluster]
uses: ./.github/workflows/e2e-test.yml
with:
image-tag: ${{ github.sha }}
runner: build-arm64