-
Notifications
You must be signed in to change notification settings - Fork 5
105 lines (85 loc) · 2 KB
/
release.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
name: Release
on:
workflow_dispatch:
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.20'
- name: Install tools
run: |
go install github.com/tc-hib/go-winres@latest
go install github.com/go-gl/glow@latest
- name: Generate
run: make generate
- name: Build
env:
CGO_ENABLED: 1
GOOS: windows
GOARCH: amd64
run: make release
- name: Upload binaries
uses: actions/upload-artifact@v2
if: success()
with:
name: neoray-windows
path: |
bin/neoray.exe
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.20'
- name: Install tools
run: go install github.com/go-gl/glow@latest
- name: Generate
run: make generate
- name: Build
env:
CGO_ENABLED: 1
GOOS: darwin
GOARCH: amd64
run: make release
- name: Upload binaries
uses: actions/upload-artifact@v2
if: success()
with:
name: neoray-macos
path: |
bin/neoray
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.20'
- name: Set up required libs
run: |
sudo apt update && sudo apt upgrade
sudo apt install libx11-dev libgtk-3-dev libgl1-mesa-dev xorg-dev
- name: Install tools
run: go install github.com/go-gl/glow@latest
- name: Generate
run: make generate
- name: Build
env:
CGO_ENABLED: 1
GOOS: linux
GOARCH: amd64
run: make release
- name: Upload binaries
uses: actions/upload-artifact@v2
if: success()
with:
name: neoray-linux
path: |
bin/neoray