-
Notifications
You must be signed in to change notification settings - Fork 51
40 lines (35 loc) · 868 Bytes
/
system_tests.yml
File metadata and controls
40 lines (35 loc) · 868 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
name: System Tests
on:
push:
branches:
- main
pull_request:
branches:
- "**"
schedule:
- cron: '00 03 * * *'
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@1e5d6b7096279ca43ce4826fda3cc805635b63c1
permissions:
contents: read
id-token: write
with:
library: python_lambda
binaries_artifact: binaries
scenarios_groups: tracer_release
skip_empty_scenarios: true
push_to_test_optimization: true