wings/.github/workflows/build-test.yml

34 lines
985 B
YAML
Raw Normal View History

2020-07-04 21:29:03 +00:00
name: "Build & Test"
on:
push:
branches-ignore:
- 'master'
- 'release/**'
2020-07-04 21:29:03 +00:00
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
2020-09-18 03:39:20 +00:00
go-version: '1.15.2'
2020-07-04 21:44:22 +00:00
2020-07-04 21:29:03 +00:00
- name: Build
2020-09-12 04:00:37 +00:00
run: GOOS=linux GOARCH=amd64 go build -ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=dev-${GIT_COMMIT:0:7}" -o build/wings_linux_amd64 -v wings.go
2020-07-04 21:44:22 +00:00
2020-07-04 21:29:03 +00:00
- name: Test
run: go test ./...
2020-07-04 21:44:22 +00:00
- name: Compress binary and make it executable
2020-07-04 22:10:35 +00:00
if: ${{ github.ref == 'refs/heads/develop' || github.event_name == 'pull_request' }}
run: upx build/wings_linux_amd64 && chmod +x build/wings_linux_amd64
2020-07-04 21:44:22 +00:00
2020-07-04 21:29:03 +00:00
- uses: actions/upload-artifact@v2
2020-07-04 22:10:35 +00:00
if: ${{ github.ref == 'refs/heads/develop' || github.event_name == 'pull_request' }}
2020-07-04 21:29:03 +00:00
with:
2020-07-04 21:44:22 +00:00
name: wings_linux_amd64
path: build/wings_linux_amd64