2020-06-24 20:36:39 +00:00
|
|
|
name: Development
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
name: golangci-lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-06-24 21:37:02 +00:00
|
|
|
with:
|
2020-06-28 16:23:46 +00:00
|
|
|
fetch-depth: 20
|
2020-06-24 20:36:39 +00:00
|
|
|
- name: Run golangci-lint
|
2020-07-26 13:05:52 +00:00
|
|
|
uses: golangci/golangci-lint-action@v2
|
2020-06-24 20:36:39 +00:00
|
|
|
with:
|
2021-08-22 21:33:58 +00:00
|
|
|
version: latest
|
2020-07-26 13:05:52 +00:00
|
|
|
args: "-v --new-from-rev HEAD~5"
|
2020-06-28 16:11:02 +00:00
|
|
|
test-build-upload:
|
2020-06-24 20:36:39 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-16 22:35:44 +00:00
|
|
|
go-version: [1.17.x]
|
2020-06-28 16:11:02 +00:00
|
|
|
platform: [ubuntu-latest]
|
2020-06-24 20:36:39 +00:00
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
|
|
- name: Install Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
2021-02-01 23:05:12 +00:00
|
|
|
stable: false
|
2020-06-24 20:36:39 +00:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
2020-06-28 16:23:46 +00:00
|
|
|
with:
|
2020-06-28 16:30:18 +00:00
|
|
|
fetch-depth: 0
|
2020-06-24 20:36:39 +00:00
|
|
|
- name: Test
|
2020-06-28 16:23:46 +00:00
|
|
|
run: go test ./... -mod=vendor
|
2020-06-28 16:11:02 +00:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
mkdir -p output/{win,lin,arm,mac}
|
2020-06-28 16:13:50 +00:00
|
|
|
VERSION=$(git describe --tags)
|
2021-10-14 13:20:58 +00:00
|
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-s -X main.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 main.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 main.githash=$(git log --pretty=format:'%h' -n 1)" -o output/mac/matterbridge-$VERSION-darwin-amd64
|
2020-06-28 16:11:02 +00:00
|
|
|
- name: Upload linux 64-bit
|
2021-08-22 21:33:58 +00:00
|
|
|
if: startsWith(matrix.go-version,'1.17')
|
2020-06-28 16:11:02 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-06-28 17:02:28 +00:00
|
|
|
name: matterbridge-linux-64bit
|
2020-06-28 16:11:02 +00:00
|
|
|
path: output/lin
|
|
|
|
- name: Upload windows 64-bit
|
2021-08-22 21:33:58 +00:00
|
|
|
if: startsWith(matrix.go-version,'1.17')
|
2020-06-28 16:11:02 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-06-28 17:02:28 +00:00
|
|
|
name: matterbridge-windows-64bit
|
2020-06-28 16:11:02 +00:00
|
|
|
path: output/win
|
|
|
|
- name: Upload darwin 64-bit
|
2021-08-22 21:33:58 +00:00
|
|
|
if: startsWith(matrix.go-version,'1.17')
|
2020-06-28 16:11:02 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-06-28 17:02:28 +00:00
|
|
|
name: matterbridge-darwin-64bit
|
2020-06-28 16:11:02 +00:00
|
|
|
path: output/mac
|