-
Notifications
You must be signed in to change notification settings - Fork 49
41 lines (36 loc) · 924 Bytes
/
system_tests.yml
File metadata and controls
41 lines (36 loc) · 924 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
34
35
36
37
38
39
40
41
name: System Tests
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build layer
run: |
ARCH=amd64 PYTHON_VERSION=3.13 ./scripts/build_layers.sh
- uses: actions/upload-artifact@v4
with:
path: .layers/datadog_lambda_py-amd64-3.13.zip
name: binaries
system-tests:
needs:
- build
uses: DataDog/system-tests/.github/workflows/system-tests.yml@main
secrets:
DD_API_KEY: ${{ secrets.DD_API_KEY }}
TEST_OPTIMIZATION_API_KEY: ${{ secrets.TEST_OPTIMIZATION_API_KEY }}
permissions:
contents: read
packages: write
with:
library: python_lambda
binaries_artifact: binaries
scenarios_groups: tracer_release
skip_empty_scenarios: true
push_to_test_optimization: true