-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (42 loc) · 1.31 KB
/
test-benchmark-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
44
45
name: test-benchmark-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-benchmark-crucible-ci:
strategy:
fail-fast: false
matrix:
repos:
- benchmark: "fio"
branch: "master"
- benchmark: "uperf"
branch: "master"
- benchmark: "oslat"
branch: "master"
uses: ./.github/workflows/benchmark-crucible-ci.yaml
with:
ci_target: "${{ matrix.repos.benchmark }}"
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-benchmark-crucible-ci-complete:
runs-on: [ self-hosted, workflow-overhead ]
needs: call-benchmark-crucible-ci
steps:
- name: Confirm Success
run: echo "test-benchmark-crucible-ci-complete"