1
0
Fork 0
mirror of https://github.com/pnx/pinger.git synced 2026-06-16 03:24:54 +02:00
pinger/.gitlab-ci.yml

34 lines
1.1 KiB
YAML

# This file is a template, and might need editing before it works on your project.
# You can copy and paste this template into a new `.gitlab-ci.yml` file.
# You should not add this template to an existing `.gitlab-ci.yml` file by using the `include:` keyword.
#
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Go.gitlab-ci.yml
image: golang:latest
stages:
- test
- build
format:
stage: test
script:
- go fmt $(go list ./... | grep -v /vendor/)
- go vet $(go list ./... | grep -v /vendor/)
- go test -race $(go list ./... | grep -v /vendor/)
compile:
stage: build
script:
- mkdir -p bin
- GOOS=windows GOARCH=386 go build -o bin/pinger-32.exe ./...
- GOOS=windows GOARCH=amd64 go build -o bin/pinger-x64.exe ./...
- GOOS=linux GOARCH=386 go build -o bin/pinger-linux-x86 ./...
- GOOS=linux GOARCH=amd64 go build -o bin/pinger-linux-x64 ./...
artifacts:
paths:
- bin
expire_in: 1 week