2021-07-23 09:00:07 +00:00
|
|
|
version: v1.0
|
|
|
|
name: Traefik
|
|
|
|
agent:
|
|
|
|
machine:
|
|
|
|
type: e1-standard-4
|
|
|
|
os_image: ubuntu1804
|
|
|
|
|
|
|
|
fail_fast:
|
|
|
|
stop:
|
|
|
|
when: "branch != 'master'"
|
|
|
|
|
|
|
|
auto_cancel:
|
|
|
|
queued:
|
|
|
|
when: "branch != 'master'"
|
|
|
|
running:
|
|
|
|
when: "branch != 'master'"
|
|
|
|
|
|
|
|
global_job_config:
|
|
|
|
prologue:
|
|
|
|
commands:
|
|
|
|
- curl -sSfL https://raw.githubusercontent.com/ldez/semgo/master/godownloader.sh | sudo sh -s -- -b "/usr/local/bin"
|
2021-08-13 15:42:09 +00:00
|
|
|
- sudo semgo go1.17
|
2021-07-23 09:00:07 +00:00
|
|
|
- export "GOPATH=$(go env GOPATH)"
|
|
|
|
- export "SEMAPHORE_GIT_DIR=${GOPATH}/src/github.com/traefik/${SEMAPHORE_PROJECT_NAME}"
|
|
|
|
- export "PATH=${GOPATH}/bin:${PATH}"
|
|
|
|
- mkdir -vp "${SEMAPHORE_GIT_DIR}" "${GOPATH}/bin"
|
|
|
|
- export GOPROXY=https://proxy.golang.org,direct
|
2022-02-15 13:56:53 +00:00
|
|
|
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "${GOPATH}/bin" v1.44.0
|
2021-12-22 13:12:04 +00:00
|
|
|
- curl -sSfL https://gist.githubusercontent.com/traefiker/6d7ac019c11d011e4f131bb2cca8900e/raw/goreleaser.sh | bash -s -- -b "${GOPATH}/bin"
|
2021-07-23 09:00:07 +00:00
|
|
|
- checkout
|
|
|
|
- cache restore traefik-$(checksum go.sum)
|
|
|
|
|
|
|
|
blocks:
|
2021-11-25 10:10:06 +00:00
|
|
|
- name: Test Integration
|
2021-07-23 09:00:07 +00:00
|
|
|
dependencies: []
|
|
|
|
run:
|
|
|
|
when: "branch =~ '.*' OR pull_request =~'.*'"
|
|
|
|
task:
|
|
|
|
jobs:
|
2021-11-25 10:10:06 +00:00
|
|
|
- name: Test Integration
|
2021-07-23 09:00:07 +00:00
|
|
|
commands:
|
|
|
|
- make pull-images
|
2021-09-15 08:36:14 +00:00
|
|
|
- mkdir -p webui/static && touch webui/static/index.html # Avoid generating webui
|
2021-07-23 09:00:07 +00:00
|
|
|
- PRE_TARGET="" make binary
|
2021-11-25 10:10:06 +00:00
|
|
|
- make test-integration
|
2021-07-23 09:00:07 +00:00
|
|
|
- df -h
|
|
|
|
epilogue:
|
|
|
|
always:
|
|
|
|
commands:
|
|
|
|
- cache store traefik-$(checksum go.sum) $HOME/go/pkg/mod
|
|
|
|
|
|
|
|
- name: Release
|
|
|
|
dependencies: []
|
|
|
|
run:
|
|
|
|
when: "tag =~ '.*'"
|
|
|
|
task:
|
2021-08-05 08:08:06 +00:00
|
|
|
agent:
|
|
|
|
machine:
|
|
|
|
type: e1-standard-8
|
|
|
|
os_image: ubuntu1804
|
2021-07-23 09:00:07 +00:00
|
|
|
secrets:
|
|
|
|
- name: traefik
|
|
|
|
env_vars:
|
|
|
|
- name: GH_VERSION
|
|
|
|
value: 1.12.1
|
|
|
|
- name: CODENAME
|
2021-12-20 16:02:06 +00:00
|
|
|
value: "rocamadour"
|
2021-07-23 09:00:07 +00:00
|
|
|
- name: PRE_TARGET
|
|
|
|
value: ""
|
|
|
|
prologue:
|
|
|
|
commands:
|
|
|
|
- export VERSION=${SEMAPHORE_GIT_TAG_NAME}
|
|
|
|
- curl -sSL -o /tmp/gh_${GH_VERSION}_linux_amd64.tar.gz https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_amd64.tar.gz
|
|
|
|
- tar -zxvf /tmp/gh_${GH_VERSION}_linux_amd64.tar.gz -C /tmp
|
|
|
|
- sudo mv /tmp/gh_${GH_VERSION}_linux_amd64/bin/gh /usr/local/bin/gh
|
|
|
|
jobs:
|
|
|
|
- name: Release
|
|
|
|
commands:
|
|
|
|
- make release-packages
|
|
|
|
- gh release create ${SEMAPHORE_GIT_TAG_NAME} ./dist/traefik*.* --repo traefik/traefik --title ${SEMAPHORE_GIT_TAG_NAME} --notes ${SEMAPHORE_GIT_TAG_NAME}
|
|
|
|
- ./script/deploy.sh
|