mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-12 21:50:26 +00:00
e3ffbcadd8
* zulip: Treat unknown errors with a 10-second backoff. An unknown error (including an unauthorized error) would fall through with no calls to time.Sleep, resulting in hammering the server as quickly as possible. Add a 10-second sleep in the default error case. The heartbeat is left with no explicit sleep, but all other codepaths now contain one. * version: Move version information into a separate package. This will allow it to be accessed by other sections of the code. * zulip: Use the matterbridge version in the user-agent. Co-authored-by: Wim <wim@42.be>
59 lines
2.1 KiB
YAML
59 lines
2.1 KiB
YAML
name: Development
|
|
on: [push, pull_request]
|
|
jobs:
|
|
lint:
|
|
name: golangci-lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 20
|
|
- name: Run golangci-lint
|
|
uses: golangci/golangci-lint-action@v2
|
|
with:
|
|
version: latest
|
|
args: "-v --new-from-rev HEAD~5"
|
|
test-build-upload:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.17.x]
|
|
platform: [ubuntu-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
stable: false
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Test
|
|
run: go test ./... -mod=vendor
|
|
- name: Build
|
|
run: |
|
|
mkdir -p output/{win,lin,arm,mac}
|
|
VERSION=$(git describe --tags)
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-s -X github.com/42wim/matterbridge/version.GitHash=$(git log --pretty=format:'%h' -n 1)" -o output/lin/matterbridge-$VERSION-linux-amd64
|
|
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -ldflags "-s -X github.com/42wim/matterbridge/version.GitHash=$(git log --pretty=format:'%h' -n 1)" -o output/win/matterbridge-$VERSION-windows-amd64.exe
|
|
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -ldflags "-s -X github.com/42wim/matterbridge/version.GitHash=$(git log --pretty=format:'%h' -n 1)" -o output/mac/matterbridge-$VERSION-darwin-amd64
|
|
- name: Upload linux 64-bit
|
|
if: startsWith(matrix.go-version,'1.17')
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: matterbridge-linux-64bit
|
|
path: output/lin
|
|
- name: Upload windows 64-bit
|
|
if: startsWith(matrix.go-version,'1.17')
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: matterbridge-windows-64bit
|
|
path: output/win
|
|
- name: Upload darwin 64-bit
|
|
if: startsWith(matrix.go-version,'1.17')
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: matterbridge-darwin-64bit
|
|
path: output/mac
|