5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 21:32:31 +00:00
matterbridge/.github/workflows/development.yml

58 lines
1.9 KiB
YAML
Raw Normal View History

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:
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:
2020-07-26 13:05:52 +00:00
version: v1.29
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:
2020-08-20 22:29:59 +00:00
go-version: [1.14.x, 1.15.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 }}
- name: Checkout code
uses: actions/checkout@v2
with:
2020-06-28 16:30:18 +00:00
fetch-depth: 0
2020-06-24 20:36:39 +00:00
- name: Test
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)
GOOS=linux GOARCH=amd64 go build -mod=vendor -ldflags "-s -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o output/lin/matterbridge-$VERSION-linux-amd64
GOOS=windows GOARCH=amd64 go build -mod=vendor -ldflags "-s -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o output/win/matterbridge-$VERSION-windows-amd64.exe
GOOS=darwin GOARCH=amd64 go build -mod=vendor -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
2020-08-20 22:29:59 +00:00
if: startsWith(matrix.go-version,'1.15')
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
2020-08-20 22:29:59 +00:00
if: startsWith(matrix.go-version,'1.15')
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
2020-08-20 22:29:59 +00:00
if: startsWith(matrix.go-version,'1.15')
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