Skip to content

Commit 9967d7e

Browse files
committed
foo
Signed-off-by: Tuomas Katila <tuomas.katila@intel.com>
1 parent b5e3945 commit 9967d7e

File tree

1 file changed

+86
-0
lines changed

1 file changed

+86
-0
lines changed

.github/workflows/foo.yaml

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
name: teste2e
2+
on:
3+
push:
4+
branches:
5+
- 'release-*'
6+
pull_request:
7+
branches:
8+
- main
9+
- 'release-*'
10+
- '*'
11+
12+
permissions:
13+
contents: read
14+
15+
jobs:
16+
e2e:
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
include:
21+
- name: e2e-dsa-gnr
22+
targetjob: e2e-dsa
23+
runner: simics-gnr
24+
images:
25+
- intel-dsa-plugin
26+
- intel-idxd-config-initcontainer
27+
- accel-config-demo
28+
- intel-deviceplugin-operator
29+
- name: e2e-iaa-gnr
30+
targetjob: e2e-iaa
31+
runner: simics-gnr
32+
images:
33+
- intel-iaa-plugin
34+
- intel-idxd-config-initcontainer
35+
- accel-config-demo
36+
- intel-deviceplugin-operator
37+
- name: e2e-qat
38+
targetjob: e2e-qat FOCUS=Resource:generic
39+
runner: qat
40+
images:
41+
- intel-qat-plugin
42+
- intel-qat-initcontainer
43+
- crypto-perf
44+
- name: e2e-fpga
45+
runner: fpga
46+
images:
47+
- intel-fpga-plugin
48+
- intel-fpga-initcontainer
49+
- intel-fpga-admissionwebhook
50+
- opae-nlb-demo
51+
- name: e2e-spr
52+
runner: spr
53+
images:
54+
- intel-qat-plugin
55+
- intel-qat-initcontainer
56+
- openssl-qat-engine
57+
- intel-dsa-plugin
58+
- intel-idxd-config-initcontainer
59+
- accel-config-demo
60+
- intel-deviceplugin-operator
61+
- intel-iaa-plugin
62+
- crypto-perf
63+
- intel-gpu-plugin
64+
- intel-sgx-plugin
65+
- intel-sgx-initcontainer
66+
- intel-sgx-admissionwebhook
67+
- sgx-sdk-demo
68+
69+
name: ${{ matrix.name }}
70+
runs-on: ${{ matrix.runner }}
71+
env:
72+
TARGET_JOB: ${{ matrix.targetjob || matrix.name }}
73+
IMAGES: ${{ join(matrix.images, " ") }}
74+
75+
steps:
76+
- uses: actions/checkout@v4
77+
with:
78+
fetch-depth: 0
79+
- name: Describe test environment
80+
run: |
81+
echo "Event name: ${{ github.event_name }}"
82+
echo "Actor: ${{ github.actor }}"
83+
echo "Ref: ${{ github.ref }}"
84+
echo "SHA: ${{ github.sha }}"
85+
echo "Images: $IMAGES"
86+
echo "Target job: $TARGET_JOB"

0 commit comments

Comments
 (0)