-
Notifications
You must be signed in to change notification settings - Fork 9
204 lines (174 loc) · 5.96 KB
/
release.yaml
File metadata and controls
204 lines (174 loc) · 5.96 KB
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
200
201
202
203
204
name: Release
on:
create:
tags:
- v*
pull_request:
branches:
- "main"
env:
GOPRIVATE: "flant.internal"
PRIVATE_REPO: "${{secrets.DECKHOUSE_PRIVATE_REPO}}"
GOLANGCI_LINT_VERSION: 'v2.7.2'
permissions:
contents: write
jobs:
release:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: [self-hosted, regular]
container:
image: ubuntu:22.04
steps:
- name: Install dependency for linux-amd64 dist
env:
DEBIAN_FRONTEND: noninteractive
run: apt-get update && apt-get install -y apt-utils libbtrfs-dev file git gcc dnsutils
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # To use `git describe --tags`
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
cache: false # Cache download takes longer that a build from scratch
- name: Setup Task
uses: arduino/setup-task@v2
- name: Start ssh-agent
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: |
${{secrets.SOURCE_REPO_SSH_KEY}}
- name: Add ssh_known_hosts
run: |
echo "::add-mask::$PRIVATE_REPO"
IPS=$(nslookup "$PRIVATE_REPO" | awk '/^Address: / { print $2 }')
for IP in $IPS; do
echo "::add-mask::$IP"
done
mkdir -p /root/.ssh
touch /root/.ssh/known_hosts
HOST_KEYS=$(ssh-keyscan -H "$PRIVATE_REPO" 2>/dev/null)
echo "$HOST_KEYS" | while IFS= read -r KEY_LINE; do
CONSTANT_PART=$(echo "$KEY_LINE" | awk '{print $2, $3}')
if ! grep -q "$CONSTANT_PART" /root/.ssh/known_hosts; then
echo "$KEY_LINE" >> /root/.ssh/known_hosts
fi
done
- name: Setup git
run: |
git config --global url."ssh://git@${PRIVATE_REPO}/".insteadOf "https://flant.internal/"
git config --global --add safe.directory '*'
- name: Build and package
run: task build-and-package
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
dist/**/*.tar.gz
dist/**/*.tar.gz.sha256sum
test:
if: github.event_name == 'pull_request'
runs-on: [self-hosted, regular]
container:
image: ubuntu:22.04
steps:
- name: Install dependency for linux-amd64 dist
env:
DEBIAN_FRONTEND: noninteractive
run: apt-get update && apt-get install -y apt-utils libbtrfs-dev file git gcc dnsutils
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # To use `git describe --tags`
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
cache: false # Cache download takes longer that a build from scratch
- name: Setup Task
uses: arduino/setup-task@v2
- name: Start ssh-agent
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: |
${{secrets.SOURCE_REPO_SSH_KEY}}
- name: Add ssh_known_hosts
run: |
echo "::add-mask::$PRIVATE_REPO"
IPS=$(nslookup "$PRIVATE_REPO" | awk '/^Address: / { print $2 }')
for IP in $IPS; do
echo "::add-mask::$IP"
done
mkdir -p /root/.ssh
touch /root/.ssh/known_hosts
HOST_KEYS=$(ssh-keyscan -H "$PRIVATE_REPO" 2>/dev/null)
echo "$HOST_KEYS" | while IFS= read -r KEY_LINE; do
CONSTANT_PART=$(echo "$KEY_LINE" | awk '{print $2, $3}')
if ! grep -q "$CONSTANT_PART" /root/.ssh/known_hosts; then
echo "$KEY_LINE" >> /root/.ssh/known_hosts
fi
done
- name: Setup git
run: |
git config --global url."ssh://git@${PRIVATE_REPO}/".insteadOf "https://flant.internal/"
git config --global --add safe.directory '*'
- name: Run tests
run: |
task test
lint:
if: github.event_name == 'pull_request'
runs-on: [self-hosted, regular]
continue-on-error: true
container:
image: ubuntu:22.04
name: Lint
steps:
- name: Install dependency for linux-amd64 dist
env:
DEBIAN_FRONTEND: noninteractive
run: apt-get update && apt-get install -y apt-utils libbtrfs-dev file git gcc dnsutils
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # To use `git describe --tags`
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
cache: false # Cache download takes longer that a build from scratch
- name: Setup GolangCI-Lint
uses: golangci/golangci-lint-action@v9
with:
install-only: 'true'
version: ${{ env.GOLANGCI_LINT_VERSION }}
- name: Setup Task
uses: arduino/setup-task@v2
- name: Start ssh-agent
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: |
${{secrets.SOURCE_REPO_SSH_KEY}}
- name: Add ssh_known_hosts
run: |
echo "::add-mask::$PRIVATE_REPO"
IPS=$(nslookup "$PRIVATE_REPO" | awk '/^Address: / { print $2 }')
for IP in $IPS; do
echo "::add-mask::$IP"
done
mkdir -p /root/.ssh
touch /root/.ssh/known_hosts
HOST_KEYS=$(ssh-keyscan -H "$PRIVATE_REPO" 2>/dev/null)
echo "$HOST_KEYS" | while IFS= read -r KEY_LINE; do
CONSTANT_PART=$(echo "$KEY_LINE" | awk '{print $2, $3}')
if ! grep -q "$CONSTANT_PART" /root/.ssh/known_hosts; then
echo "$KEY_LINE" >> /root/.ssh/known_hosts
fi
done
- name: Setup git
run: |
git config --global url."ssh://git@${PRIVATE_REPO}/".insteadOf "https://flant.internal/"
git config --global --add safe.directory '*'
- name: Run lint
run: |
task lint:check