-
Notifications
You must be signed in to change notification settings - Fork 130
62 lines (49 loc) · 1.58 KB
/
test.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
58
59
60
61
62
---
name: . 🔍 Testing
on:
push:
branches:
- '**'
tags-ignore:
- '**'
paths-ignore:
- README.md
jobs:
linter-linux:
uses: ./.github/workflows/component_linux_linter.yml
unit-test-linux:
uses: ./.github/workflows/component_linux_unit_test.yml
secrets:
gh_token: ${{secrets.GITHUB_TOKEN}}
harvest-test-linux:
uses: ./.github/workflows/component_linux_harvest_test.yml
linter-macos:
uses: ./.github/workflows/component_macos_linter.yml
unit-test-macos:
uses: ./.github/workflows/component_macos_unit_test.yml
harvest-test-macos:
uses: ./.github/workflows/component_macos_harvest_test.yml
linter-windows:
uses: ./.github/workflows/component_windows_linter.yml
unit-test-windows:
uses: ./.github/workflows/component_windows_unit_test.yml
proxy-tests-linux:
uses: ./.github/workflows/component_linux_proxy_test.yml
secrets:
DOCKER_HUB_ID: ${{secrets.OHAI_DOCKER_HUB_ID}}
DOCKER_HUB_PASSWORD: ${{secrets.OHAI_DOCKER_HUB_PASSWORD}}
build-container:
uses: ./.github/workflows/component_docker_build.yml
secrets:
DOCKER_HUB_ID: ${{secrets.OHAI_DOCKER_HUB_ID}}
DOCKER_HUB_PASSWORD: ${{secrets.OHAI_DOCKER_HUB_PASSWORD}}
with:
TAG: "0.0.0" # needed for goreleaser test builds
PUBLISH: false
test-build:
uses: ./.github/workflows/component_linux_build.yml
secrets:
DOCKER_HUB_ID: ${{secrets.OHAI_DOCKER_HUB_ID}}
DOCKER_HUB_PASSWORD: ${{secrets.OHAI_DOCKER_HUB_PASSWORD}}
with:
TAG: "0.0.0" # needed for goreleaser test builds