forked from dagger/dagger
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (43 loc) · 1.23 KB
/
alternative-ci-runners-4.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
name: Alternative CI Runners 4
on:
# Run the workflow every day TWICE:
# 1. 9:06AM UTC (low activity)
# 2. 9:26AM UTC (cache test - high chance of no code changes)
schedule:
- cron: "6,26 9 * * *"
# Enable manual trigger for on-demand runs - helps when debugging
workflow_dispatch:
permissions:
contents: read
jobs:
docs-lint-on-x1-nvme:
uses: ./.github/workflows/_dagger_on_x1_nvme.yml
with:
function: docs lint
timeout: 20
nvme: 1
test-cli-engine-on-x1-nvme:
needs: docs-lint-on-x1-nvme
uses: ./.github/workflows/_dagger_on_x1_nvme.yml
with:
function: test specific --run='TestCLI|TestEngine' --race=true --parallel=16
timeout: 20
nvme: 1
sdk-go-on-x1-nvme:
needs: docs-lint-on-x1-nvme
uses: ./.github/workflows/_dagger_on_x1_nvme.yml
with:
function: check --targets=sdk/go
nvme: 2
sdk-python-on-x1-nvme:
needs: docs-lint-on-x1-nvme
uses: ./.github/workflows/_dagger_on_x1_nvme.yml
with:
function: check --targets=sdk/python
nvme: 3
sdk-typescript-on-x1-nvme:
needs: docs-lint-on-x1-nvme
uses: ./.github/workflows/_dagger_on_x1_nvme.yml
with:
function: check --targets=sdk/typescript
nvme: 4