-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,34 @@ | ||
name: Go | ||
on: [push] | ||
jobs: | ||
Build-on-macOS: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.21 | ||
id: go | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v2 | ||
|
||
build: | ||
name: Build | ||
- name: Build | ||
run: | | ||
env GOOS=darwin GOARCH=amd64 go build -o getnovel-amd64 -ldflags="-s -w" . | ||
env GOOS=darwin GOARCH=arm64 go build -o getnovel-arm64 -ldflags="-s -w" . | ||
mkdir darwin-universal | ||
lipo -create -output darwin-universal/getnovel getnovel-amd64 getnovel-arm64 | ||
- name: Upload artifact getnovel-darwin-amd64 | ||
uses: actions/[email protected] | ||
with: | ||
name: getnovel-darwin-universal | ||
path: darwin-universal | ||
|
||
Build-on-Linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
|
@@ -21,8 +43,6 @@ jobs: | |
env GOOS=linux GOARCH=amd64 go build -o linux-amd64/getnovel -ldflags="-s -w" . | ||
env GOOS=linux GOARCH=arm go build -o linux-arm/getnovel -ldflags="-s -w" . | ||
env GOOS=linux GOARCH=arm64 go build -o linux-arm64/getnovel -ldflags="-s -w" . | ||
env GOOS=darwin GOARCH=amd64 go build -o darwin-amd64/getnovel -ldflags="-s -w" . | ||
env GOOS=darwin GOARCH=arm64 go build -o darwin-arm64/getnovel -ldflags="-s -w" . | ||
env GOOS=windows GOARCH=amd64 go build -o windows-amd64/getnovel.exe -ldflags="-s -w" . | ||
env GOOS=freebsd GOARCH=amd64 go build -o freebsd-amd64/getnovel -ldflags="-s -w" . | ||
env GOOS=openbsd GOARCH=amd64 go build -o openbsd-amd64/getnovel -ldflags="-s -w" . | ||
|
@@ -47,18 +67,6 @@ jobs: | |
name: getnovel-linux-arm64 | ||
path: linux-arm64 | ||
|
||
- name: Upload artifact getnovel-darwin-amd64 | ||
uses: actions/[email protected] | ||
with: | ||
name: getnovel-darwin-amd64 | ||
path: darwin-amd64 | ||
|
||
- name: Upload artifact getnovel-darwin-arm64 | ||
uses: actions/[email protected] | ||
with: | ||
name: getnovel-darwin-arm64 | ||
path: darwin-arm64 | ||
|
||
- name: Upload artifact getnovel-dragonfly-amd64 | ||
uses: actions/[email protected] | ||
with: | ||
|