-
Notifications
You must be signed in to change notification settings - Fork 712
82 lines (76 loc) · 2.17 KB
/
build.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
name: IPTV-Go
on:
push:
branches: ["main"]
paths:
- '**.go'
pull_request:
branches: ["main"]
paths:
- '**.go'
jobs:
linux_amd64_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cross Compile
run: |
cd ./Golang
GOOS=linux GOARCH=amd64 go build -o allinone_linux_amd64
- name: Upload Cross Compile Artifacts
uses: actions/upload-artifact@v3
with:
name: allinone_linux_amd64
path: Golang/allinone_linux_amd64
linux_arm64_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cross Compile
run: |
cd ./Golang
GOOS=linux GOARCH=arm64 go build -o allinone_linux_arm64
- name: Upload Cross Compile Artifacts
uses: actions/upload-artifact@v3
with:
name: allinone_linux_arm64
path: Golang/allinone_linux_arm64
darwin_amd64_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cross Compile
run: |
cd ./Golang
GOOS=darwin GOARCH=amd64 go build -o allinone_darwin_amd64
- name: Upload Cross Compile Artifacts
uses: actions/upload-artifact@v3
with:
name: allinone_darwin_amd64
path: Golang/allinone_darwin_amd64
darwin_arm64_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cross Compile
run: |
cd ./Golang
GOOS=darwin GOARCH=arm64 go build -o allinone_darwin_arm64
- name: Upload Cross Compile Artifacts
uses: actions/upload-artifact@v3
with:
name: allinone_darwin_arm64
path: Golang/allinone_darwin_arm64
windows_amd64_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cross Compile
run: |
cd ./Golang
GOOS=windows GOARCH=amd64 go build -o allinone_windows_amd64.exe
- name: Upload Cross Compile Artifacts
uses: actions/upload-artifact@v3
with:
name: allinone_windows_amd64
path: Golang/allinone_windows_amd64.exe