2020-03-20 22:38:44 +08:00
# Used as inspiration: https://github.com/mvdan/github-actions-golang
2020-08-02 04:23:22 +08:00
name : Tests
2020-03-20 22:38:44 +08:00
on :
push :
2020-05-06 08:50:30 +08:00
branches :
2020-03-24 04:26:53 +08:00
- master
2021-05-12 12:26:16 +08:00
- 2 .*
2020-03-20 22:38:44 +08:00
pull_request :
2020-05-06 08:50:30 +08:00
branches :
2020-03-24 04:26:53 +08:00
- master
2021-05-12 12:26:16 +08:00
- 2 .*
2020-03-20 22:38:44 +08:00
jobs :
test :
strategy :
# Default is true, cancels jobs for other platforms in the matrix if one fails
fail-fast : false
matrix :
2023-07-22 12:00:48 +08:00
os :
2024-02-10 06:31:26 +08:00
- linux
- mac
- windows
2023-07-22 12:00:48 +08:00
go :
2024-01-26 02:58:19 +08:00
- '1.22'
2024-08-24 01:01:28 +08:00
- '1.23'
2020-03-22 06:53:42 +08:00
2022-04-14 04:03:38 +08:00
include :
# Set the minimum Go patch version for the given Go minor
# Usable via ${{ matrix.GO_SEMVER }}
2024-01-26 02:58:19 +08:00
- go : '1.22'
2024-05-10 22:56:18 +08:00
GO_SEMVER : '~1.22.3'
2024-01-26 02:58:19 +08:00
2024-08-24 01:01:28 +08:00
- go : '1.23'
GO_SEMVER : '~1.23.0'
2020-03-22 06:53:42 +08:00
# Set some variables per OS, usable via ${{ matrix.VAR }}
2024-02-10 06:31:26 +08:00
# OS_LABEL: the VM label from GitHub Actions (see https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories)
2020-03-22 06:53:42 +08:00
# CADDY_BIN_PATH: the path to the compiled Caddy binary, for artifact publishing
# SUCCESS: the typical value for $? per OS (Windows/pwsh returns 'True')
2024-02-10 06:31:26 +08:00
- os : linux
OS_LABEL : ubuntu-latest
2020-03-22 06:53:42 +08:00
CADDY_BIN_PATH : ./cmd/caddy/caddy
SUCCESS : 0
2024-02-10 06:31:26 +08:00
- os : mac
OS_LABEL : macos-14
2020-03-22 06:53:42 +08:00
CADDY_BIN_PATH : ./cmd/caddy/caddy
SUCCESS : 0
2024-02-10 06:31:26 +08:00
- os : windows
OS_LABEL : windows-latest
2020-03-22 06:53:42 +08:00
CADDY_BIN_PATH : ./cmd/caddy/caddy.exe
SUCCESS : 'True'
2024-02-10 06:31:26 +08:00
runs-on : ${{ matrix.OS_LABEL }}
2020-03-20 22:38:44 +08:00
steps :
2023-04-15 09:38:33 +08:00
- name : Checkout code
2023-10-02 08:13:54 +08:00
uses : actions/checkout@v4
2023-04-15 09:38:33 +08:00
2020-03-20 22:38:44 +08:00
- name : Install Go
2024-01-02 15:13:31 +08:00
uses : actions/setup-go@v5
2020-03-20 22:38:44 +08:00
with :
2022-04-14 04:03:38 +08:00
go-version : ${{ matrix.GO_SEMVER }}
check-latest : true
2020-03-20 22:38:44 +08:00
# These tools would be useful if we later decide to reinvestigate
# publishing test/coverage reports to some tool for easier consumption
# - name: Install test and coverage analysis tools
# run: |
# go get github.com/axw/gocov/gocov
# go get github.com/AlekSi/gocov-xml
# go get -u github.com/jstemmer/go-junit-report
2022-12-29 01:05:42 +08:00
# echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
2020-03-20 22:38:44 +08:00
- name : Print Go version and environment
2020-03-22 07:44:51 +08:00
id : vars
2023-08-26 00:06:44 +08:00
shell : bash
2020-03-20 22:38:44 +08:00
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
2021-01-29 06:40:36 +08:00
printf "Git version: $(git version)\n\n"
2020-03-22 07:44:51 +08:00
# Calculate the short SHA1 hash of the git commit
2022-12-29 01:05:42 +08:00
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
2020-04-18 01:54:35 +08:00
2020-03-20 22:38:44 +08:00
- name : Get dependencies
run : |
go get -v -t -d ./...
# mkdir test-results
- name : Build Caddy
working-directory : ./cmd/caddy
env :
CGO_ENABLED : 0
run : |
2024-07-23 07:37:44 +08:00
go build -tags nobadger -trimpath -ldflags="-w -s" -v
2020-03-20 22:38:44 +08:00
2024-04-19 05:40:12 +08:00
- name : Smoke test Caddy
working-directory : ./cmd/caddy
run : |
./caddy start
./caddy stop
2020-03-22 06:53:42 +08:00
- name : Publish Build Artifact
2024-01-02 16:23:25 +08:00
uses : actions/upload-artifact@v4
2020-03-20 22:38:44 +08:00
with :
2020-08-21 10:40:26 +08:00
name : caddy_${{ runner.os }}_go${{ matrix.go }}_${{ steps.vars.outputs.short_sha }}
2020-03-22 06:53:42 +08:00
path : ${{ matrix.CADDY_BIN_PATH }}
2024-01-02 16:23:25 +08:00
compression-level : 0
2020-03-20 22:38:44 +08:00
# Commented bits below were useful to allow the job to continue
# even if the tests fail, so we can publish the report separately
# For info about set-output, see https://stackoverflow.com/questions/57850553/github-actions-check-steps-status
- name : Run tests
# id: step_test
# continue-on-error: true
run : |
# (go test -v -coverprofile=cover-profile.out -race ./... 2>&1) > test-results/test-result.out
2024-01-11 02:04:11 +08:00
go test -tags nobadger -v -coverprofile="cover-profile.out" -short -race ./...
2022-12-29 01:05:42 +08:00
# echo "status=$?" >> $GITHUB_OUTPUT
2020-03-20 22:38:44 +08:00
# Relevant step if we reinvestigate publishing test/coverage reports
# - name: Prepare coverage reports
# run: |
# mkdir coverage
# gocov convert cover-profile.out > coverage/coverage.json
# # Because Windows doesn't work with input redirection like *nix, but output redirection works.
# (cat ./coverage/coverage.json | gocov-xml) > coverage/coverage.xml
# To return the correct result even though we set 'continue-on-error: true'
2020-03-22 06:53:42 +08:00
# - name: Coerce correct build result
2024-02-10 06:31:26 +08:00
# if: matrix.os != 'windows' && steps.step_test.outputs.status != ${{ matrix.SUCCESS }}
2020-03-20 22:38:44 +08:00
# run: |
# echo "step_test ${{ steps.step_test.outputs.status }}\n"
# exit 1
2020-06-13 01:11:46 +08:00
s390x-test :
name : test (s390x on IBM Z)
runs-on : ubuntu-latest
2022-12-23 03:13:47 +08:00
if : github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
2020-08-07 04:17:40 +08:00
continue-on-error: true # August 2020 : s390x VM is down due to weather and power issues
2020-06-13 01:11:46 +08:00
steps :
2023-04-15 09:38:33 +08:00
- name : Checkout code
2023-10-02 08:13:54 +08:00
uses : actions/checkout@v4
2020-06-13 01:11:46 +08:00
- name : Run Tests
run : |
2024-08-18 17:54:12 +08:00
set +e
2020-06-13 01:11:46 +08:00
mkdir -p ~/.ssh && echo -e "${SSH_KEY//_/\\n}" > ~/.ssh/id_ecdsa && chmod og-rwx ~/.ssh/id_ecdsa
# short sha is enough?
short_sha=$(git rev-parse --short HEAD)
2024-10-02 20:34:04 +08:00
# To shorten the following lines
ssh_opts="-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
ssh_host="$CI_USER@ci-s390x.caddyserver.com"
2020-06-13 01:11:46 +08:00
# The environment is fresh, so there's no point in keeping accepting and adding the key.
2024-10-02 20:34:04 +08:00
rsync -arz -e "ssh $ssh_opts" --progress --delete --exclude '.git' . "$ssh_host":/var/tmp/"$short_sha"
ssh $ssh_opts -t "$ssh_host" bash <<EOF
cd /var/tmp/$short_sha
go version
go env
printf "\n\n"
retries=3
exit_code=0
while ((retries > 0)); do
CGO_ENABLED=0 go test -p 1 -tags nobadger -v ./...
exit_code=$?
if ((exit_code == 0)); then
break
fi
echo "\n\nTest failed: \$exit_code, retrying..."
((retries--))
done
echo "Remote exit code: \$exit_code"
exit \$exit_code
EOF
2020-06-13 01:11:46 +08:00
test_result=$?
# There's no need leaving the files around
2024-10-02 20:34:04 +08:00
ssh $ssh_opts "$ssh_host" "rm -rf /var/tmp/'$short_sha'"
2020-06-13 01:11:46 +08:00
echo "Test exit code: $test_result"
exit $test_result
env :
SSH_KEY : ${{ secrets.S390X_SSH_KEY }}
2022-10-04 22:03:10 +08:00
CI_USER : ${{ secrets.CI_USER }}
2020-06-13 01:11:46 +08:00
2020-05-06 08:50:30 +08:00
goreleaser-check :
runs-on : ubuntu-latest
steps :
2023-04-15 09:38:33 +08:00
- name : Checkout code
2023-10-02 08:13:54 +08:00
uses : actions/checkout@v4
2021-08-26 01:30:24 +08:00
2024-06-06 16:33:19 +08:00
- uses : goreleaser/goreleaser-action@v6
2020-05-06 08:50:30 +08:00
with :
version : latest
args : check