mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-21 18:22:00 -08:00
Upload artifacts on commit
This commit is contained in:
parent
1fee323247
commit
f291832a77
29
.github/workflows/development.yml
vendored
29
.github/workflows/development.yml
vendored
@ -13,11 +13,11 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
version: v1.27
|
version: v1.27
|
||||||
args: "-v --new-from-rev HEAD~1"
|
args: "-v --new-from-rev HEAD~1"
|
||||||
test:
|
test-build-upload:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go-version: [1.13.x, 1.14.x]
|
go-version: [1.13.x, 1.14.x]
|
||||||
platform: [ubuntu-latest, macos-latest, windows-latest]
|
platform: [ubuntu-latest]
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
steps:
|
steps:
|
||||||
- name: Install Go
|
- name: Install Go
|
||||||
@ -28,3 +28,28 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test ./...
|
run: go test ./...
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
mkdir -p output/{win,lin,arm,mac}
|
||||||
|
VERSION = $(git describe --tags)
|
||||||
|
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
|
||||||
|
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
|
||||||
|
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
|
||||||
|
- name: Upload linux 64-bit
|
||||||
|
if: startsWith(matrix.go-version,'1.14')
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: linux
|
||||||
|
path: output/lin
|
||||||
|
- name: Upload windows 64-bit
|
||||||
|
if: startsWith(matrix.go-version,'1.14')
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: windows
|
||||||
|
path: output/win
|
||||||
|
- name: Upload darwin 64-bit
|
||||||
|
if: startsWith(matrix.go-version,'1.14')
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: darwin
|
||||||
|
path: output/mac
|
||||||
|
Loading…
Reference in New Issue
Block a user