-
Notifications
You must be signed in to change notification settings - Fork 20
277 lines (227 loc) · 8.92 KB
/
release_binaries.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
name: Release binaries
on:
# workflow_run:
# workflows:
# - Build darwin-amd64 binary (no gpu)
# - Build darwin-arm64 binary (no gpu)
# - Build linux-amd64 binary (GPU)
# - Build linux-arm64 binary (GPU)
# types:
# - completed
push:
branches:
- gorka/ci-trigger-release
jobs:
build_linux_arm64:
runs-on: linux-arm64
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Add NVIDIA package repository
run: |
sudo apt-get install -y gnupg2 curl
sudo mkdir -p /usr/share/keyrings
curl -fsSL https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/3bf863cc.pub | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-drivers.gpg
echo "deb [signed-by=/usr/share/keyrings/nvidia-drivers.gpg] https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/ /" | sudo tee /etc/apt/sources.list.d/nvidia-drivers.list
- name: Update package lists
run: sudo apt-get update || true # Ignore errors from this command
- name: Install NVIDIA CUDA Toolkit
run: |
sudo apt-get install -y nvidia-cuda-toolkit
export PATH=/usr/local/cuda/bin:$PATH
- name: Build for linux/arm64
env:
GOOS: linux
GOARCH: arm64
CGO_ENABLED: 1
CUDA_HOME: /usr/local/cuda
LD_LIBRARY_PATH: /usr/local/cuda/lib64:$LD_LIBRARY_PATH
run: |
echo "-------------- OS: ${GOOS} : Arch: ${GOARCH} ---------- start"
output_dir="build/${GOOS}-${GOARCH}"
output_name="lilypad-${GOOS}-${GOARCH}"
mkdir -p "${output_dir}"
# Debug: Print environment variables for the build
echo "Building for ${GOOS}/${GOARCH} with GOOS=$GOOS, GOARCH=$GOARCH"
echo "CUDA_HOME: $CUDA_HOME"
echo "LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
go build -o "${output_dir}/${output_name}" -v -tags cuda -ldflags="-X 'github.com/lilypad-tech/lilypad/cmd/lilypad.VERSION=$(git describe --tags --abbrev=0)' -X 'github.com/lilypad-tech/lilypad/cmd/lilypad.COMMIT_SHA=$(git rev-parse HEAD)'"
echo "-------------- OS: ${GOOS} : Arch: ${GOARCH} ---------- done"
- name: Upload binary
uses: actions/upload-artifact@v3
with:
name: linux-arm64-binary
path: build/linux-arm64/lilypad-linux-arm64
- name: Verify Build Output
run: |
ls -la build/linux-arm64
echo "Build complete"
build_linux_amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Add NVIDIA package repository
run: |
sudo apt-get install -y gnupg2 curl
sudo mkdir -p /usr/share/keyrings
curl -fsSL https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/3bf863cc.pub | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-drivers.gpg
echo "deb [signed-by=/usr/share/keyrings/nvidia-drivers.gpg] https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/ /" | sudo tee /etc/apt/sources.list.d/nvidia-drivers.list
- name: Update package lists
run: sudo apt-get update || true # Ignore errors from this command
- name: Install NVIDIA CUDA Toolkit
run: |
sudo apt-get install -y nvidia-cuda-toolkit
export PATH=/usr/local/cuda/bin:$PATH
- name: Build for linux/amd64
env:
GOOS: linux
GOARCH: amd64
CGO_ENABLED: 1
CUDA_HOME: /usr/local/cuda
LD_LIBRARY_PATH: /usr/local/cuda/lib64:$LD_LIBRARY_PATH
run: |
echo "-------------- OS: ${GOOS} : Arch: ${GOARCH} ---------- start"
output_dir="build/${GOOS}-${GOARCH}"
output_name="lilypad-${GOOS}-${GOARCH}"
mkdir -p "${output_dir}"
# Debug: Print environment variables for the build
echo "Building for ${GOOS}/${GOARCH} with GOOS=$GOOS, GOARCH=$GOARCH"
echo "CUDA_HOME: $CUDA_HOME"
echo "LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
go build -o "${output_dir}/${output_name}" -v -tags cuda -ldflags="-X 'github.com/lilypad-tech/lilypad/cmd/lilypad.VERSION=$(git describe --tags --abbrev=0)' -X 'github.com/lilypad-tech/lilypad/cmd/lilypad.COMMIT_SHA=$(git rev-parse HEAD)'"
echo "-------------- OS: ${GOOS} : Arch: ${GOARCH} ---------- done"
- name: Upload binary
uses: actions/upload-artifact@v3
with:
name: linux-amd64-binary
path: build/linux-amd64/lilypad-linux-amd64
- name: Verify Build Output
run: |
ls -la build/linux-amd64
echo "Build complete"
build_darwin_arm64:
runs-on: macos-latest #uses M1
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Check architecture
run: uname -m
- name: Build for darwin/arm64
env:
GOOS: darwin
GOARCH: arm64
CGO_ENABLED: 1
run: |
echo "-------------- OS: ${GOOS} : Arch: ${GOARCH} ---------- start"
output_dir="build/${GOOS}-${GOARCH}"
output_name="lilypad-${GOOS}-${GOARCH}"
mkdir -p "${output_dir}"
# Debug: Print environment variables for the build
echo "Building for ${GOOS}/${GOARCH} with GOOS=$GOOS, GOARCH=$GOARCH"
echo "excluding CUDA. specify 'cuda' build tag to include it."
go build -o "${output_dir}/${output_name}" -v -ldflags="-X 'github.com/lilypad-tech/lilypad/cmd/lilypad.VERSION=$(git describe --tags --abbrev=0)' -X 'github.com/lilypad-tech/lilypad/cmd/lilypad.COMMIT_SHA=$(git rev-parse HEAD)'"
echo "-------------- OS: ${GOOS} : Arch: ${GOARCH} ---------- done"
- name: Preview before upload
run: |
ls -la .
ls -la build
ls -la /tmp
- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: darwin-arm64-binary
path: build/darwin-arm64/lilypad-darwin-arm64
- name: Verify Build Output
run: |
ls -la build/darwin-arm64
echo "Build complete"
build_darwin_amd64:
runs-on: macos-13 #uses amd64
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Check architecture
run: uname -m
- name: Build for darwin/amd64
env:
GOOS: darwin
GOARCH: amd64
CGO_ENABLED: 1
run: |
echo "-------------- OS: ${GOOS} : Arch: ${GOARCH} ---------- start"
output_dir="build/${GOOS}-${GOARCH}"
output_name="lilypad-${GOOS}-${GOARCH}"
mkdir -p "${output_dir}"
# Debug: Print environment variables for the build
echo "Building for ${GOOS}/${GOARCH} with GOOS=$GOOS, GOARCH=$GOARCH"
echo "excluding CUDA. specify 'cuda' build tag to include it."
go build -o "${output_dir}/${output_name}" -v -ldflags="-X 'github.com/lilypad-tech/lilypad/cmd/lilypad.VERSION=$(git describe --tags --abbrev=0)' -X 'github.com/lilypad-tech/lilypad/cmd/lilypad.COMMIT_SHA=$(git rev-parse HEAD)'"
echo "-------------- OS: ${GOOS} : Arch: ${GOARCH} ---------- done"
- name: Upload binary
uses: actions/upload-artifact@v3
with:
name: darwin-amd64-binary
path: build/darwin-amd64/lilypad-darwin-amd64
- name: Verify Build Output
run: |
ls -la build/darwin-amd64
echo "Build complete"
release:
needs: [build_darwin_amd64, build_darwin_arm64, build_linux_amd64, build_linux_arm64]
# if: ${{ github.event.workflow_run.head_branch == 'main' }} # Only run this job on the main branch
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Git
run: |
git fetch --tags
SHORTSHA=$(git rev-parse --short HEAD)
echo "SHORTSHA=${SHORTSHA}" >> $GITHUB_ENV
- name: Download linux-amd64 binary
uses: actions/download-artifact@v3
with:
name: linux-amd64-binary
path: ./
- name: Download linux-arm64 binary
uses: actions/download-artifact@v3
with:
name: linux-arm64-binary
path: ./
- name: Download darwin-amd64 binary
uses: actions/download-artifact@v3
with:
name: darwin-amd64-binary
path: ./
- name: Download darwin-arm64 binary
uses: actions/download-artifact@v4
with:
name: darwin-arm64-binary
path: ./
- name: Upload Release Asset - darwin-arm64
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
lilypad-darwin-arm64
lilypad-darwin-amd64
lilypad-linux-arm64
lilypad-linux-amd64
tag_name: v2.0.0-${{ env.SHORTSHA }}
release_name: "Release v2.0.0-${{ env.SHORTSHA }}"
body: "Release v2.0.0-${{ env.SHORTSHA }}"
draft: false
prerelease: false