-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (40 loc) · 1.22 KB
/
test-tool-crucible-ci.yaml
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
name: test-tool-crucible-ci
on:
pull_request:
branches: [ main ]
paths-ignore:
- LICENSE
- '**.md'
- .github/workflows/faux-crucible-ci.yaml
- .github/workflows/faux-benchmark-crucible-ci.yaml
- .github/workflows/faux-core-crucible-ci.yaml
- .github/workflows/faux-tool-crucible-ci.yaml
- '.github/runners/**'
- 'docs/**'
workflow_dispatch:
jobs:
call-tool-crucible-ci:
strategy:
fail-fast: false
matrix:
repos:
- tool: "sysstat"
branch: "master"
- tool: "procstat"
branch: "master"
uses: ./.github/workflows/tool-crucible-ci.yaml
with:
ci_target: "${{ matrix.repos.tool }}"
ci_target_branch: "${{ matrix.repos.branch }}"
crucible_ci_test: "yes"
crucible_ci_test_branch: "${{ github.ref }}"
github_workspace: "$GITHUB_WORKSPACE"
secrets:
ci_registry_auth: ${{ secrets.CRUCIBLE_CI_ENGINES_REGISTRY_AUTH }}
quay_oauth_token: ${{ secrets.CRUCIBLE_QUAYIO_OAUTH_TOKEN }}
test-tool-crucible-ci-complete:
runs-on: [ self-hosted, workflow-overhead ]
needs: call-tool-crucible-ci
steps:
- name: Confirm Success
run: echo "test-tool-crucible-ci-complete"