File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : System Tests
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - " **"
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+
17
+ - name : Build layer
18
+ run : |
19
+ ARCH=amd64 PYTHON_VERSION=3.13 ./scripts/build_layers.sh
20
+
21
+ - uses : actions/upload-artifact@v4
22
+ with :
23
+ path : .layers/datadog_lambda_py-amd64-3.13.zip
24
+ name : binaries
25
+
26
+ system-tests :
27
+ needs :
28
+ - build
29
+ uses : DataDog/system-tests/.github/workflows/system-tests.yml@main
30
+ secrets : inherit
31
+ permissions :
32
+ contents : read
33
+ packages : write
34
+ with :
35
+ library : python_lambda
36
+ binaries_artifact : binaries
37
+ scenarios_groups : end_to_end
38
+ skip_empty_scenarios : true
You can’t perform that action at this time.
0 commit comments