2020-05-22 21:06:12 +01:00
|
|
|
# Used as inspiration: https://github.com/mvdan/github-actions-golang
|
|
|
|
|
2022-04-07 23:33:47 +01:00
|
|
|
name: Tests
|
2020-05-22 21:06:12 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
# Default is true, cancels jobs for other platforms in the matrix if one fails
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
2023-08-12 11:23:10 +01:00
|
|
|
go: [ '1.20', '1.21' ]
|
2020-05-22 21:06:12 +01:00
|
|
|
|
|
|
|
# Set some variables per OS, usable via ${{ matrix.VAR }}
|
2020-12-30 18:06:56 +00:00
|
|
|
# XCADDY_BIN_PATH: the path to the compiled xcaddy binary, for artifact publishing
|
2020-05-22 21:06:12 +01:00
|
|
|
# SUCCESS: the typical value for $? per OS (Windows/pwsh returns 'True')
|
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
|
|
|
XCADDY_BIN_PATH: ./cmd/xcaddy/xcaddy
|
|
|
|
SUCCESS: 0
|
|
|
|
|
|
|
|
- os: macos-latest
|
|
|
|
XCADDY_BIN_PATH: ./cmd/xcaddy/xcaddy
|
|
|
|
SUCCESS: 0
|
|
|
|
|
|
|
|
- os: windows-latest
|
|
|
|
XCADDY_BIN_PATH: ./cmd/xcaddy/xcaddy.exe
|
|
|
|
SUCCESS: 'True'
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Install Go
|
2024-01-02 07:15:55 +00:00
|
|
|
uses: actions/setup-go@v5
|
2020-05-22 21:06:12 +01:00
|
|
|
with:
|
2020-12-30 18:06:56 +00:00
|
|
|
go-version: ${{ matrix.go }}
|
2020-05-22 21:06:12 +01:00
|
|
|
|
|
|
|
- name: Checkout code
|
2023-10-02 00:35:26 +01:00
|
|
|
uses: actions/checkout@v4
|
2020-05-22 21:06:12 +01:00
|
|
|
|
|
|
|
- name: Print Go version and environment
|
|
|
|
id: vars
|
|
|
|
run: |
|
|
|
|
printf "Using go at: $(which go)\n"
|
|
|
|
printf "Go version: $(go version)\n"
|
|
|
|
printf "\n\nGo environment:\n\n"
|
|
|
|
go env
|
|
|
|
printf "\n\nSystem environment:\n\n"
|
|
|
|
env
|
|
|
|
# Calculate the short SHA1 hash of the git commit
|
2023-02-08 22:00:26 +00:00
|
|
|
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
2020-05-22 21:06:12 +01:00
|
|
|
|
|
|
|
- name: Cache the build cache
|
2023-02-08 21:23:27 +00:00
|
|
|
uses: actions/cache@v3
|
2020-05-22 21:06:12 +01:00
|
|
|
with:
|
2023-02-08 22:00:26 +00:00
|
|
|
# In order:
|
|
|
|
# * Module download cache
|
|
|
|
# * Build cache (Linux)
|
|
|
|
# * Build cache (Mac)
|
|
|
|
# * Build cache (Windows)
|
|
|
|
path: |
|
|
|
|
~/go/pkg/mod
|
|
|
|
~/.cache/go-build
|
|
|
|
~/Library/Caches/go-build
|
|
|
|
~\AppData\Local\go-build
|
2020-12-30 18:06:56 +00:00
|
|
|
key: ${{ runner.os }}-${{ matrix.go }}-go-ci-${{ hashFiles('**/go.sum') }}
|
2020-05-22 21:06:12 +01:00
|
|
|
restore-keys: |
|
2020-12-30 18:06:56 +00:00
|
|
|
${{ runner.os }}-${{ matrix.go }}-go-ci
|
2020-05-22 21:06:12 +01:00
|
|
|
|
|
|
|
- name: Get dependencies
|
|
|
|
run: |
|
|
|
|
go get -v -t -d ./...
|
|
|
|
|
2020-12-30 18:06:56 +00:00
|
|
|
- name: Build xcaddy
|
2020-05-22 21:06:12 +01:00
|
|
|
working-directory: ./cmd/xcaddy
|
|
|
|
env:
|
|
|
|
CGO_ENABLED: 0
|
|
|
|
run: |
|
|
|
|
go build -trimpath -ldflags="-w -s" -v
|
|
|
|
|
2021-08-27 05:33:30 +01:00
|
|
|
- name: Output version
|
|
|
|
run: |
|
|
|
|
${{ matrix.XCADDY_BIN_PATH }} version
|
|
|
|
|
2020-05-22 21:06:12 +01:00
|
|
|
- name: Publish Build Artifact
|
2023-02-08 21:23:27 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-05-22 21:06:12 +01:00
|
|
|
with:
|
2020-12-30 18:06:56 +00:00
|
|
|
name: xcaddy_${{ runner.os }}_go${{ matrix.go }}_${{ steps.vars.outputs.short_sha }}
|
2020-05-22 21:06:12 +01:00
|
|
|
path: ${{ matrix.XCADDY_BIN_PATH }}
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
go test -v -coverprofile="cover-profile.out" -short -race ./...
|
|
|
|
|
|
|
|
goreleaser-check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
2023-10-02 00:35:26 +01:00
|
|
|
uses: actions/checkout@v4
|
2022-04-07 23:33:47 +01:00
|
|
|
|
2023-10-02 00:35:33 +01:00
|
|
|
- uses: goreleaser/goreleaser-action@v5
|
2020-05-22 21:06:12 +01:00
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
args: check
|
|
|
|
env:
|
|
|
|
TAG: ${{ steps.vars.outputs.short_sha }}
|