-
Notifications
You must be signed in to change notification settings - Fork 217
48 lines (44 loc) · 1.25 KB
/
lib-e2e.yaml
File metadata and controls
48 lines (44 loc) · 1.25 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: e2e
on:
workflow_call:
permissions:
contents: read
jobs:
e2e:
strategy:
fail-fast: false
matrix:
include:
- name: e2e-spr
targetjob: e2e-spr
runner: spr
images:
- intel-qat-plugin
- intel-qat-initcontainer
- openssl-qat-engine
- accel-config-demo
- intel-deviceplugin-operator
- crypto-perf
- intel-sgx-plugin
- intel-sgx-initcontainer
- intel-sgx-admissionwebhook
- sgx-sdk-demo
name: ${{ matrix.name }}
runs-on: ${{ matrix.runner }}
env:
TARGET_JOB: ${{ matrix.targetjob || matrix.name }}
IMAGES: ${{ join(matrix.images, ' ') }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
with:
fetch-depth: 0
- name: Describe test environment
run: |
echo "Event name: ${{ github.event_name }}"
echo "Actor: ${{ github.actor }}"
echo "Ref: ${{ github.ref }}"
echo "SHA: ${{ github.sha }}"
echo "Images: $IMAGES"
echo "Target job: $TARGET_JOB"
- name: Run e2e tests
run: ./test/e2e/scripts/run.sh