-
Notifications
You must be signed in to change notification settings - Fork 95
199 lines (168 loc) · 4.88 KB
/
ci.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
name: CI
on:
push:
branches:
- main
- 'release/**'
pull_request:
branches:
- main
- 'release/**'
jobs:
#
# golangci-lint
#
linters:
name: Linters
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
go-version: [1.23.2]
os: [ubuntu-22.04, macos-14, windows-2019]
steps:
- uses: actions/checkout@v4
with:
path: src/github.com/estesp/manifest-tool
- name: Set env
shell: bash
run: |
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: golangci/golangci-lint-action@v6
with:
version: v1.60.1
skip-cache: true
working-directory: src/github.com/estesp/manifest-tool/v2
args: --timeout=5m
#
# Project checks
#
project:
name: DCO/Vendor Checks
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
with:
path: src/github.com/estesp/manifest-tool
fetch-depth: 100
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.2'
- name: Set env
shell: bash
run: |
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- name: Install dependencies
run: go install -v github.com/vbatts/git-validation@latest
- name: DCO
env:
GITHUB_COMMIT_URL: ${{ github.event.pull_request.commits_url }}
DCO_VERBOSITY: "-q"
DCO_RANGE: ""
working-directory: src/github.com/estesp/manifest-tool
run: |
if [ -z "${GITHUB_COMMIT_URL}" ]; then
DCO_RANGE=$(jq -r '.before +".."+ .after' ${GITHUB_EVENT_PATH})
else
DCO_RANGE=$(curl ${GITHUB_COMMIT_URL} | jq -r '.[0].parents[0].sha +".."+ .[-1].sha')
fi
GIT_CHECK_EXCLUDE="./v2/vendor" git-validation -range "${DCO_RANGE}" -run DCO,short-subject,dangling-whitespace
- name: Vendor
working-directory: src/github.com/estesp/manifest-tool
run: ./hack/vendor.sh
#
# Build binaries
#
binaries:
name: Build
runs-on: ${{ matrix.os }}
timeout-minutes: 10
needs: [project, linters]
strategy:
matrix:
os: [ubuntu-22.04, macos-14, windows-2019]
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.2'
- name: Set env
shell: bash
run: |
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- uses: actions/checkout@v4
with:
path: src/github.com/estesp/manifest-tool
- name: Make
run: |
make clean
make binary
working-directory: src/github.com/estesp/manifest-tool
#
# Integration testing
#
tests:
name: Integration tests
runs-on: ubuntu-20.04
timeout-minutes: 10
needs: [project, linters]
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.2'
- name: Set env
shell: bash
run: |
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- uses: actions/checkout@v4
with:
path: src/github.com/estesp/manifest-tool
- name: Make binary
run: make binary
working-directory: src/github.com/estesp/manifest-tool
- name: Set up bats
run: |
git clone https://github.com/bats-core/bats-core.git
cd bats-core
sudo ./install.sh /usr/local
# we need to have a known name (that isn't localhost) for local registry TLS
sudo echo "127.0.0.1 myregistry.local" | sudo tee -a /etc/hosts
- name: Run tests
env:
RUNTIME_TOOL: docker
run: |
bats integration/public-registry-tests.bats
bats integration/local-registry-tests.bats
bats integration/local-registry-tests-tls.bats
working-directory: src/github.com/estesp/manifest-tool
#
# Cross-built architectures
#
cross:
name: Cross-builds
runs-on: ubuntu-20.04
timeout-minutes: 10
needs: [project, linters]
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.2'
- name: Set env
shell: bash
run: |
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- uses: actions/checkout@v4
with:
path: src/github.com/estesp/manifest-tool
- name: Make cross-built binaries
run: make cross
working-directory: src/github.com/estesp/manifest-tool