5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00
matterbridge/.github/workflows/development.yml

59 lines
2.1 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:
2023-03-10 21:29:44 +00:00
- uses: actions/checkout@v3
2020-06-24 21:37:02 +00:00
with:
fetch-depth: 20
2020-06-24 20:36:39 +00:00
- name: Run golangci-lint
2023-03-10 21:29:44 +00:00
uses: golangci/golangci-lint-action@v3
2020-06-24 20:36:39 +00:00
with:
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:
2023-03-09 21:29:58 +00:00
go-version: [1.20.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
2023-03-10 21:29:44 +00:00
uses: actions/setup-go@v3
2020-06-24 20:36:39 +00:00
with:
go-version: ${{ matrix.go-version }}
stable: false
2020-06-24 20:36:39 +00:00
- name: Checkout code
2023-03-10 21:29:44 +00:00
uses: actions/checkout@v3
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)
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
2020-06-28 16:11:02 +00:00
- name: Upload linux 64-bit
2023-03-09 21:29:58 +00:00
if: startsWith(matrix.go-version,'1.20')
2023-03-10 21:29:44 +00:00
uses: actions/upload-artifact@v3
2020-06-28 16:11:02 +00:00
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
2023-03-09 21:29:58 +00:00
if: startsWith(matrix.go-version,'1.20')
2023-03-10 21:29:44 +00:00
uses: actions/upload-artifact@v3
2020-06-28 16:11:02 +00:00
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
2023-03-09 21:29:58 +00:00
if: startsWith(matrix.go-version,'1.20')
2023-03-10 21:29:44 +00:00
uses: actions/upload-artifact@v3
2020-06-28 16:11:02 +00:00
with:
2020-06-28 17:02:28 +00:00
name: matterbridge-darwin-64bit
2020-06-28 16:11:02 +00:00
path: output/mac