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

77 lines
2.7 KiB
YAML
Raw Normal View History

2020-11-15 04:42:12 +00:00
name: Run Tests
2020-07-04 21:29:03 +00:00
on:
push:
branches:
- develop
2020-07-04 21:29:03 +00:00
pull_request:
branches:
- develop
2020-07-04 21:29:03 +00:00
jobs:
build:
2020-10-17 21:13:06 +00:00
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04 ]
2021-08-24 19:28:17 +00:00
go: [ '^1.17' ]
2020-10-17 21:13:06 +00:00
goos: [ linux ]
2020-12-08 16:12:45 +00:00
goarch: [ amd64, arm64 ]
2020-10-17 21:13:06 +00:00
runs-on: ${{ matrix.os }}
2020-07-04 21:29:03 +00:00
steps:
2020-12-15 22:59:06 +00:00
- name: Code Checkout
uses: actions/checkout@v2
- name: Setup Go v${{ matrix.go }}
uses: actions/setup-go@v2
2020-07-04 21:29:03 +00:00
with:
2020-10-17 21:13:06 +00:00
go-version: ${{ matrix.go }}
2020-12-06 23:12:41 +00:00
- name: Print Environment
id: env
run: |
printf "Go Executable Path: $(which go)\n"
printf "Go Version: $(go version)\n"
printf "\n\nGo Environment:\n\n"
go env
printf "\n\nSystem Environment:\n\n"
env
printf "Git Version: $(git version)\n\n"
2020-12-06 23:12:41 +00:00
echo "::set-output name=version_tag::${GITHUB_REF/refs\/tags\//}"
echo "::set-output name=short_sha::$(git rev-parse --short HEAD)"
echo "::set-output name=go_cache::$(go env GOCACHE)"
echo "::set-output name=go_mod_cache::$(go env GOMODCACHE)"
2020-12-06 23:12:41 +00:00
- name: Build Cache
uses: actions/cache@v2
with:
key: ${{ runner.os }}-go${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
2020-12-06 23:12:41 +00:00
restore-keys: |
${{ runner.os }}-go${{ matrix.go }}-
path: |
${{ steps.env.outputs.go_cache }}
${{ steps.env.outputs.go_mod_cache }}
2020-12-06 23:12:41 +00:00
- name: Get Dependencies
run: |
go get -v -t -d ./...
2020-07-04 21:29:03 +00:00
- name: Build
2020-10-17 21:13:06 +00:00
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
CGO_ENABLED: 0
2020-12-06 23:12:41 +00:00
SRC_PATH: github.com/pterodactyl/wings
2020-10-17 20:52:38 +00:00
run: |
2022-01-30 20:06:56 +00:00
go build -v -trimpath -ldflags="-s -w -X ${SRC_PATH}/system.Version=dev-${GIT_COMMIT:0:7}" -o build/wings_${GOOS}_${GOARCH} wings.go
go build -v -trimpath -ldflags="-X ${SRC_PATH}/system.Version=dev-${GIT_COMMIT:0:7}" -o build/wings_${GOOS}_${GOARCH}_debug wings.go
upx build/wings_${GOOS}_${{ matrix.goarch }}
chmod +x build/*
- name: Tests
run: go test -race ./...
2022-01-30 20:06:56 +00:00
- name: Upload Release Artifact
2020-12-15 22:59:06 +00:00
uses: actions/upload-artifact@v2
if: ${{ github.ref == 'refs/heads/develop' || github.event_name == 'pull_request' }}
2020-10-17 20:52:38 +00:00
with:
2022-01-30 20:06:56 +00:00
name: wings_linux_${{ matrix.goarch }}
path: build/wings_linux_${{ matrix.goarch }}
- name: Upload Debug Artifact
uses: actions/upload-artifact@v2
if: ${{ github.ref == 'refs/heads/develop' || github.event_name == 'pull_request' }}
with:
name: wings_linux_${{ matrix.goarch }}_debug
path: build/wings_linux_${{ matrix.goarch }}_debug