diff options
author | Wim <wim@42.be> | 2020-06-28 18:11:02 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2020-06-28 18:11:02 +0200 |
commit | f291832a7747ebacd067763e08ee6ac51979472b (patch) | |
tree | 43bd5a83149f51a93eb75984424c1f9fee088dc0 /.github/workflows/development.yml | |
parent | 1fee32324736a188af02e985bdc8b571e9addd55 (diff) | |
download | matterbridge-msglm-f291832a7747ebacd067763e08ee6ac51979472b.tar.gz matterbridge-msglm-f291832a7747ebacd067763e08ee6ac51979472b.tar.bz2 matterbridge-msglm-f291832a7747ebacd067763e08ee6ac51979472b.zip |
Upload artifacts on commit
Diffstat (limited to '.github/workflows/development.yml')
-rw-r--r-- | .github/workflows/development.yml | 31 |
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 |