2021-09-11 09:48:42 +00:00
|
|
|
# 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
|
|
|
|
|
2023-06-04 13:02:39 +00:00
|
|
|
|
2021-09-11 09:48:42 +00:00
|
|
|
variables:
|
|
|
|
# Please edit to your GitLab project
|
|
|
|
REPO_NAME: salsa.debian.org/mdosch/go-sendxmpp
|
|
|
|
|
|
|
|
# The problem is that to be able to use go get, one needs to put
|
|
|
|
# the repository in the $GOPATH. So for example if your gitlab domain
|
|
|
|
# is gitlab.com, and that your repository is namespace/project, and
|
|
|
|
# the default GOPATH being /go, then you'd need to have your
|
|
|
|
# repository in /go/src/gitlab.com/namespace/project
|
|
|
|
# Thus, making a symbolic link corrects this.
|
|
|
|
before_script:
|
|
|
|
- mkdir -p $GOPATH/src/$(dirname $REPO_NAME)
|
|
|
|
- ln -svf $CI_PROJECT_DIR $GOPATH/src/$REPO_NAME
|
|
|
|
- cd $GOPATH/src/$REPO_NAME
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- build
|
2022-01-27 16:33:41 +00:00
|
|
|
- release
|
2021-09-11 09:48:42 +00:00
|
|
|
|
|
|
|
format:
|
2023-06-04 14:50:44 +00:00
|
|
|
# image: registry.gitlab.com/gitlab-org/gitlab-build-images:golangci-lint-alpine
|
2021-09-11 09:48:42 +00:00
|
|
|
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/)
|
2023-06-04 13:02:39 +00:00
|
|
|
# Taken from https://gitlab.com/gitlab-org/gitlab/-/merge_requests/20404/diffs#diff-content-8071267ea32ba69f24a8bd50bcbddf972c295ce3
|
|
|
|
# Use default .golangci.yml file from the image if one is not present in the project root.
|
2023-06-04 14:50:44 +00:00
|
|
|
#- '[ -e .golangci.yml ] || cp /golangci/.golangci.yml .'
|
|
|
|
#- golangci-lint run
|
|
|
|
#allow_failure: true
|
2021-09-11 09:48:42 +00:00
|
|
|
|
2022-01-27 16:33:41 +00:00
|
|
|
compile:
|
2021-09-11 09:48:42 +00:00
|
|
|
stage: build
|
2023-01-27 08:46:09 +00:00
|
|
|
only:
|
|
|
|
- tags
|
2021-09-29 16:50:52 +00:00
|
|
|
script:
|
2022-01-27 16:33:41 +00:00
|
|
|
- echo "${CI_JOB_ID}" > CI_JOB_ID.txt
|
2022-07-24 15:30:27 +00:00
|
|
|
- env GOOS=linux GOARCH=amd64 go build -buildmode=pie -ldflags "-s -w -extldflags '-static'" -o $CI_PROJECT_DIR/linux-amd64/go-sendxmpp
|
|
|
|
- env GOOS=linux GOARCH=arm64 go build -buildmode=pie -ldflags "-s -w -extldflags '-static'" -o $CI_PROJECT_DIR/linux-arm64/go-sendxmpp
|
|
|
|
- env GOOS=linux GOARCH=386 go build -ldflags "-s -w -extldflags '-static'" -o $CI_PROJECT_DIR/linux-386/go-sendxmpp
|
|
|
|
- env GOOS=linux GOARCH=arm go build -ldflags "-s -w -extldflags '-static'" -o $CI_PROJECT_DIR/linux-arm/go-sendxmpp
|
|
|
|
- env GOOS=windows GOARCH=386 go build -buildmode=pie -ldflags "-s -w -extldflags '-static'" -o $CI_PROJECT_DIR/win386/go-sendxmpp.exe
|
|
|
|
- env GOOS=windows GOARCH=amd64 go build -buildmode=pie -ldflags "-s -w -extldflags '-static'" -o $CI_PROJECT_DIR/win64/go-sendxmpp.exe
|
2021-09-11 09:48:42 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
2022-01-27 16:33:41 +00:00
|
|
|
- linux-amd64/go-sendxmpp
|
2022-07-14 09:07:55 +00:00
|
|
|
- linux-arm64/go-sendxmpp
|
|
|
|
- linux-386/go-sendxmpp
|
|
|
|
- linux-arm/go-sendxmpp
|
|
|
|
- win386/go-sendxmpp.exe
|
|
|
|
- win64/go-sendxmpp.exe
|
2022-01-27 16:33:41 +00:00
|
|
|
- CI_JOB_ID.txt
|
2021-09-11 09:48:42 +00:00
|
|
|
|
2022-01-27 16:33:41 +00:00
|
|
|
release:
|
|
|
|
stage: release
|
|
|
|
image: registry.gitlab.com/gitlab-org/release-cli:latest
|
2021-09-29 16:29:57 +00:00
|
|
|
only:
|
|
|
|
- tags
|
2021-09-29 16:50:52 +00:00
|
|
|
script:
|
2022-01-27 16:33:41 +00:00
|
|
|
- |
|
2022-02-25 12:18:02 +00:00
|
|
|
release-cli create --name "Release $CI_COMMIT_TAG" --tag-name $CI_COMMIT_TAG --description="`head -n $(expr "$(grep -nm2 "^## " CHANGELOG.md|awk '(NR>1) {print $1}'|cut -f1 -d:) - 2"|bc) CHANGELOG.md`" \
|
2022-01-27 16:33:41 +00:00
|
|
|
--assets-link "{\"name\":\"Linux amd64\",\"url\":\"https://salsa.debian.org/mdosch/go-sendxmpp/-/jobs/`cat CI_JOB_ID.txt`/artifacts/file/linux-amd64/go-sendxmpp\"}" \
|
|
|
|
--assets-link "{\"name\":\"Linux arm64\",\"url\":\"https://salsa.debian.org/mdosch/go-sendxmpp/-/jobs/`cat CI_JOB_ID.txt`/artifacts/file/linux-arm64/go-sendxmpp\"}" \
|
|
|
|
--assets-link "{\"name\":\"Linux 386\",\"url\":\"https://salsa.debian.org/mdosch/go-sendxmpp/-/jobs/`cat CI_JOB_ID.txt`/artifacts/file/linux-386/go-sendxmpp\"}" \
|
|
|
|
--assets-link "{\"name\":\"Linux arm\",\"url\":\"https://salsa.debian.org/mdosch/go-sendxmpp/-/jobs/`cat CI_JOB_ID.txt`/artifacts/file/linux-arm/go-sendxmpp\"}" \
|
|
|
|
--assets-link "{\"name\":\"Windows 386\",\"url\":\"https://salsa.debian.org/mdosch/go-sendxmpp/-/jobs/`cat CI_JOB_ID.txt`/artifacts/file/win386/go-sendxmpp.exe\"}" \
|
|
|
|
--assets-link "{\"name\":\"Windows amd64\",\"url\":\"https://salsa.debian.org/mdosch/go-sendxmpp/-/jobs/`cat CI_JOB_ID.txt`/artifacts/file/win64/go-sendxmpp.exe\"}"
|