summaryrefslogtreecommitdiffstats
path: root/.github/workflows/development.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/development.yml')
-rw-r--r--.github/workflows/development.yml31
1 files changed, 28 insertions, 3 deletions
diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml
index 438066af..37de828b 100644
--- a/.github/workflows/development.yml
+++ b/.github/workflows/development.yml
@@ -13,11 +13,11 @@ jobs:
with:
version: v1.27
args: "-v --new-from-rev HEAD~1"
- test:
+ test-build-upload:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
- platform: [ubuntu-latest, macos-latest, windows-latest]
+ platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
@@ -27,4 +27,29 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Test
- run: go test ./... \ No newline at end of file
+ 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