-
Notifications
You must be signed in to change notification settings - Fork 381
57 lines (53 loc) · 1.25 KB
/
parametric-tests.yml
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
49
50
51
52
53
54
55
56
57
name: Parametric Tests
on:
push:
branches:
- "**"
paths-ignore:
- ".circleci/**"
- ".gitlab/**"
- "appraisal/**"
- "benchmarks/**"
- "docs/**"
- "gemfiles/**"
- "integration/**"
- "sig/**"
- "spec/**"
- "suppressions/**"
- "tools/**"
- "vendor/**"
workflow_dispatch: {}
schedule:
- cron: "00 04 * * 2-6"
jobs:
build-artifacts:
runs-on: ubuntu-22.04
permissions:
packages: write
steps:
- run: mkdir binaries/
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
path: binaries/dd-trace-rb/
- name: Upload artifact
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: system_tests_binaries
path: binaries/
parametric:
needs:
- build-artifacts
uses: DataDog/system-tests/.github/workflows/run-parametric.yml@main
secrets: inherit
with:
library: ruby
binaries_artifact: system_tests_binaries
job_count: 8
job_matrix: "[1,2,3,4,5,6,7,8]"
complete:
name: Parametric Tests (complete)
runs-on: ubuntu-24.04
needs:
- parametric
steps:
- run: echo "DONE!"