-
Notifications
You must be signed in to change notification settings - Fork 1
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
4 changed files
with
265 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
BINARY_PREFIX: "work_server" | ||
BINARY_SUFFIX: "" | ||
PR_PROMPT: "::warning:: Build artifact will not be uploaded due to the workflow is trigged by pull request." | ||
LD_FLAGS: "-w -s" | ||
|
||
jobs: | ||
build: | ||
name: Build binary CI | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
# build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/amd64, darwin/arm64 | ||
goos: [linux, windows] | ||
goarch: [amd64] | ||
exclude: | ||
- goos: darwin | ||
goarch: arm | ||
- goos: darwin | ||
goarch: "386" | ||
- goos: windows | ||
goarch: arm64 | ||
fail-fast: true | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Go environment | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.17 | ||
- name: Build binary file | ||
env: | ||
GOOS: ${{ matrix.goos }} | ||
GOARCH: ${{ matrix.goarch }} | ||
IS_PR: ${{ !!github.head_ref }} | ||
run: | | ||
if [ $GOOS = "windows" ]; then export BINARY_SUFFIX="$BINARY_SUFFIX.exe"; fi | ||
if $IS_PR ; then echo $PR_PROMPT; fi | ||
export BINARY_NAME="$BINARY_PREFIX$GOOS_$GOARCH$BINARY_SUFFIX" | ||
export CGO_ENABLED=0 | ||
go build -o "output/$BINARY_NAME" -ldflags "-w -s -X main.VERSION=action" | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v2 | ||
if: ${{ !github.head_ref }} | ||
with: | ||
name: ${{ matrix.goos }}_${{ matrix.goarch }} | ||
path: output/ | ||
|
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
goreleaser: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: '1.17.2' | ||
|
||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v2 | ||
with: | ||
version: latest | ||
args: release --rm-dist | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
|
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 |
---|---|---|
@@ -0,0 +1,94 @@ | ||
linters-settings: | ||
errcheck: | ||
ignore: fmt:.*,io/ioutil:^Read.* | ||
ignoretests: true | ||
|
||
goimports: | ||
local-prefixes: github.com/johlanse/work_server | ||
|
||
gocritic: | ||
disabled-checks: | ||
- exitAfterDefer | ||
|
||
forbidigo: | ||
# Forbid the following identifiers | ||
forbid: | ||
- ^fmt\.Errorf$ # consider errors.Errorf in github.com/pkg/errors | ||
|
||
linters: | ||
# please, do not use `enable-all`: it's deprecated and will be removed soon. | ||
# inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint | ||
fast: true | ||
enable: | ||
- bodyclose | ||
- deadcode | ||
- depguard | ||
- dogsled | ||
- dupl | ||
- errcheck | ||
- exportloopref | ||
- exhaustive | ||
#- funlen | ||
#- goconst | ||
- gocritic | ||
#- gocyclo | ||
- gofmt | ||
- goimports | ||
- goprintffuncname | ||
#- gosec | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- misspell | ||
- nolintlint | ||
- rowserrcheck | ||
- staticcheck | ||
- structcheck | ||
- stylecheck | ||
- typecheck | ||
- unconvert | ||
- unparam | ||
- unused | ||
- varcheck | ||
- whitespace | ||
- prealloc | ||
- predeclared | ||
- asciicheck | ||
- forbidigo | ||
- makezero | ||
- revive | ||
#- interfacer | ||
|
||
# don't enable: | ||
# - scopelint | ||
# - gochecknoglobals | ||
# - gocognit | ||
# - godot | ||
# - godox | ||
# - goerr113 | ||
# - interfacer | ||
# - maligned | ||
# - nestif | ||
# - testpackage | ||
# - wsl | ||
|
||
run: | ||
# default concurrency is a available CPU number. | ||
# concurrency: 4 # explicitly omit this value to fully utilize available resources. | ||
deadline: 5m | ||
issues-exit-code: 1 | ||
tests: false | ||
|
||
# output configuration options | ||
output: | ||
format: "colored-line-number" | ||
print-issued-lines: true | ||
print-linter-name: true | ||
uniq-by-line: true | ||
|
||
issues: | ||
# Fix found issues (if it's supported by the linter) | ||
fix: true | ||
exclude-use-default: false | ||
exclude: | ||
- "Error return value of .((os.)?std(out|err)..*|.*Close|.*Flush|os.Remove(All)?|.*print(f|ln)?|os.(Un)?Setenv). is not check" |
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 |
---|---|---|
@@ -0,0 +1,91 @@ | ||
env: | ||
- GO111MODULE=on | ||
before: | ||
hooks: | ||
- go mod tidy | ||
builds: | ||
|
||
- id: nowin | ||
env: | ||
- CGO_ENABLED=0 | ||
- GO111MODULE=on | ||
goos: | ||
- linux | ||
# - darwin | ||
goarch: | ||
- 386 | ||
- amd64 | ||
# - arm | ||
# - arm64 | ||
# goarm: | ||
# - 7 | ||
# ignore: | ||
# - goos: darwin | ||
# goarch: arm | ||
# - goos: darwin | ||
# goarch: 386 | ||
mod_timestamp: "{{ .CommitTimestamp }}" | ||
flags: | ||
- -trimpath | ||
ldflags: | ||
- -s -w -X main.VERSION=v{{.Version}} | ||
- id: win | ||
env: | ||
- CGO_ENABLED=0 | ||
- GO111MODULE=on | ||
goos: | ||
- windows | ||
goarch: | ||
- 386 | ||
- amd64 | ||
# - arm | ||
goarm: | ||
- 7 | ||
mod_timestamp: "{{ .CommitTimestamp }}" | ||
flags: | ||
- -trimpath | ||
ldflags: | ||
- -s -w -X main.VERSION=v{{.Version}} | ||
|
||
checksum: | ||
name_template: "{{ .ProjectName }}_checksums.txt" | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- "^docs:" | ||
- "^test:" | ||
- fix typo | ||
- Merge pull request | ||
- Merge branch | ||
- Merge remote-tracking | ||
- go mod tidy | ||
|
||
archives: | ||
- id: binary | ||
builds: | ||
- win | ||
- nowin | ||
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" | ||
format_overrides: | ||
- goos: windows | ||
format: binary | ||
- goos: linux | ||
format: binary | ||
- id: nowin | ||
builds: | ||
- nowin | ||
- win | ||
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
|
||
nfpms: | ||
- license: AGPL 3.0 | ||
homepage: https://github.com/johlanse/work_server | ||
file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
formats: | ||
- deb | ||
- rpm | ||
maintainer: HuoXue1 |