-
Notifications
You must be signed in to change notification settings - Fork 5
128 lines (111 loc) · 2.98 KB
/
opct.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
---
name: openshift-tests-plugin / test
on:
workflow_call: {}
push:
tags:
- '*'
pull_request:
branches:
- main
- release-*
env:
GO_VERSION: 1.22
STATIC_CHECK_VERSION: 2023.1.7
jobs:
go-staticcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-go@v5
with:
go-version-file: openshift-tests-plugin/go.mod
cache-dependency-path: |
openshift-tests-plugin/go.sum
- name: Run static code analysis
uses: dominikh/[email protected]
with:
version: "${{ env.STATIC_CHECK_VERSION }}"
install-go: false
working-directory: openshift-tests-plugin
go-vet:
name: "go-vet"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: openshift-tests-plugin/go.mod
cache-dependency-path: |
openshift-tests-plugin/go.sum
- name: Run go vet
working-directory: openshift-tests-plugin
run: |
go vet ./...
unit:
name: go-test
runs-on: ubuntu-latest
needs:
- go-staticcheck
- go-vet
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: openshift-tests-plugin/go.mod
cache-dependency-path: |
openshift-tests-plugin/go.sum
- name: Run unit tests
working-directory: openshift-tests-plugin
run: |
go test ./...
build-binary:
runs-on: ubuntu-latest
needs:
- unit
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: openshift-tests-plugin/go.mod
cache-dependency-path: |
openshift-tests-plugin/go.sum
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y make git -y
- name: Build Binary (OS=linux/amd64)
env:
OS_ARCH: linux/amd64
working-directory: openshift-tests-plugin
run: |
make build
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: openshift-tests-plugin
path: openshift-tests-plugin/openshift-tests-plugin
build-image:
runs-on: ubuntu-latest
needs:
- build-binary
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: openshift-tests-plugin/go.mod
cache-dependency-path: |
openshift-tests-plugin/go.sum
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y make git
- name: Build Binary (OS=linux/amd64)
env:
OS_ARCH: linux/amd64
SKIP_ANNOTATION: "true"
run: |
make build COMMAND=build PLATFORMS=${OS_ARCH}