k3s/.drone.yml

486 lines
9.7 KiB
YAML
Raw Normal View History

2019-01-01 08:23:01 +00:00
---
2019-01-26 05:10:04 +00:00
kind: pipeline
2019-02-05 04:42:35 +00:00
name: amd64
2019-01-26 05:10:04 +00:00
platform:
os: linux
arch: amd64
steps:
2019-02-05 04:42:35 +00:00
- name: build
image: rancher/dapper:v0.5.0
secrets: [ gcloud_auth, unprivileged_github_token ]
2019-12-23 19:07:34 +00:00
environment:
GITHUB_TOKEN:
from_secret: unprivileged_github_token
2019-12-23 19:07:34 +00:00
GCLOUD_AUTH:
from_secret: gcloud_auth
2019-02-05 04:42:35 +00:00
commands:
- dapper ci
- echo "${DRONE_TAG}-amd64" | sed -e 's/+/-/g' >.tags
2019-02-05 04:42:35 +00:00
volumes:
- name: docker
path: /var/run/docker.sock
- name: validate-cross-compilation
image: rancher/dapper:v0.5.0
commands:
- dapper validate-cross-compilation
volumes:
- name: docker
path: /var/run/docker.sock
- name: fossa
image: rancher/drone-fossa:latest
failure: ignore
settings:
api_key:
from_secret: FOSSA_API_KEY
when:
instance:
- drone-publish.k3s.io
ref:
include:
- "refs/heads/master"
- "refs/heads/release-*"
event:
- push
- tag
2019-02-05 04:42:35 +00:00
- name: github_binary_release
image: ibuildthecloud/github-release:v0.0.1
settings:
api_key:
from_secret: github_token
prerelease: true
checksum:
- sha256
checksum_file: CHECKSUMsum-amd64.txt
checksum_flatten: true
files:
- "dist/artifacts/*"
when:
instance:
- drone-publish.k3s.io
2019-02-05 04:42:35 +00:00
ref:
- refs/head/master
- refs/tags/*
event:
- tag
- name: docker-publish
image: plugins/docker
settings:
dockerfile: package/Dockerfile
password:
from_secret: docker_password
2019-02-23 03:02:06 +00:00
repo: "rancher/k3s"
2019-02-05 04:42:35 +00:00
username:
from_secret: docker_username
when:
instance:
- drone-publish.k3s.io
2019-02-05 04:42:35 +00:00
ref:
- refs/head/master
- refs/tags/*
event:
- tag
2019-01-26 05:10:04 +00:00
2019-11-01 16:48:28 +00:00
- name: test
image: rancher/dapper:v0.5.0
2019-11-11 22:18:16 +00:00
secrets: [ gcloud_auth ]
environment:
ENABLE_REGISTRY: 'true'
2019-11-11 22:18:16 +00:00
GCLOUD_AUTH:
from_secret: gcloud_auth
commands:
- docker build --target test-k3s -t k3s:test-${DRONE_STAGE_ARCH}-${DRONE_COMMIT} -f Dockerfile.test .
- >
docker run -i -e REPO -e TAG -e DRONE_TAG -e DRONE_BUILD_EVENT -e IMAGE_NAME -e GCLOUD_AUTH -e SONOBUOY_VERSION -e ENABLE_REGISTRY
-v /var/run/docker.sock:/var/run/docker.sock --privileged --network host -v /tmp:/tmp k3s:test-${DRONE_STAGE_ARCH}-${DRONE_COMMIT}
volumes:
- name: docker
path: /var/run/docker.sock
2019-05-03 23:47:25 +00:00
- name: github_e2e_logs_release
image: ibuildthecloud/github-release:v0.0.1
settings:
api_key:
from_secret: github_token
prerelease: true
files:
- "dist/artifacts/e2e-*.log"
when:
instance:
- drone-publish.k3s.io
2019-05-03 23:47:25 +00:00
ref:
- refs/head/master
- refs/tags/*
event:
- tag
2019-01-26 05:10:04 +00:00
volumes:
2019-02-05 04:42:35 +00:00
- name: docker
host:
path: /var/run/docker.sock
2019-01-26 05:10:04 +00:00
---
kind: pipeline
2019-02-05 04:42:35 +00:00
name: arm64
2019-01-26 05:10:04 +00:00
platform:
os: linux
arch: arm64
steps:
2019-02-05 04:42:35 +00:00
- name: build
image: rancher/dapper:v0.5.0
2019-12-23 19:07:34 +00:00
secrets: [ gcloud_auth ]
environment:
GCLOUD_AUTH:
from_secret: gcloud_auth
2019-02-05 04:42:35 +00:00
commands:
- dapper ci
- echo "${DRONE_TAG}-arm64" | sed -e 's/+/-/g' >.tags
2019-02-05 04:42:35 +00:00
volumes:
- name: docker
path: /var/run/docker.sock
- name: github_binary_release
image: ibuildthecloud/github-release:v0.0.1
settings:
api_key:
from_secret: github_token
prerelease: true
checksum:
- sha256
checksum_file: CHECKSUMsum-arm64.txt
checksum_flatten: true
files:
- "dist/artifacts/*"
when:
instance:
- drone-publish.k3s.io
2019-02-05 04:42:35 +00:00
ref:
- refs/head/master
- refs/tags/*
event:
- tag
- name: docker-publish
image: plugins/docker
settings:
dockerfile: package/Dockerfile
password:
from_secret: docker_password
2019-02-23 03:02:06 +00:00
repo: "rancher/k3s"
2019-02-05 04:42:35 +00:00
username:
from_secret: docker_username
when:
instance:
- drone-publish.k3s.io
2019-02-05 04:42:35 +00:00
ref:
- refs/head/master
- refs/tags/*
event:
- tag
2019-01-01 08:23:01 +00:00
2019-11-01 16:48:28 +00:00
- name: test
image: rancher/dapper:v0.5.0
2019-11-11 22:18:16 +00:00
secrets: [ gcloud_auth ]
environment:
ENABLE_REGISTRY: 'true'
2019-11-11 22:18:16 +00:00
GCLOUD_AUTH:
from_secret: gcloud_auth
2019-09-23 17:57:51 +00:00
commands:
- docker build --target test-k3s -t k3s:test-${DRONE_STAGE_ARCH}-${DRONE_COMMIT} -f Dockerfile.test .
- >
docker run -i -e REPO -e TAG -e DRONE_TAG -e DRONE_BUILD_EVENT -e IMAGE_NAME -e GCLOUD_AUTH -e SONOBUOY_VERSION -e ENABLE_REGISTRY
-v /var/run/docker.sock:/var/run/docker.sock --privileged --network host -v /tmp:/tmp k3s:test-${DRONE_STAGE_ARCH}-${DRONE_COMMIT}
2019-09-23 17:57:51 +00:00
volumes:
- name: docker
path: /var/run/docker.sock
2019-01-26 05:10:04 +00:00
volumes:
2019-02-05 04:42:35 +00:00
- name: docker
host:
path: /var/run/docker.sock
---
kind: pipeline
name: arm
platform:
os: linux
arch: arm
steps:
- name: build
image: rancher/dapper:v0.5.0
2019-12-23 19:07:34 +00:00
secrets: [ gcloud_auth ]
environment:
GCLOUD_AUTH:
from_secret: gcloud_auth
2019-02-05 04:42:35 +00:00
commands:
- dapper ci
- echo "${DRONE_TAG}-arm" | sed -e 's/+/-/g' >.tags
2019-02-05 04:42:35 +00:00
volumes:
2019-01-26 05:10:04 +00:00
- name: docker
2019-02-05 04:42:35 +00:00
path: /var/run/docker.sock
- name: github_binary_release
image: ibuildthecloud/github-release:v0.0.1
settings:
api_key:
from_secret: github_token
prerelease: true
checksum:
- sha256
checksum_file: CHECKSUMsum-arm.txt
checksum_flatten: true
files:
- "dist/artifacts/*"
when:
instance:
- drone-publish.k3s.io
2019-02-05 04:42:35 +00:00
ref:
- refs/head/master
- refs/tags/*
event:
- tag
2019-01-26 05:10:04 +00:00
2019-02-05 04:42:35 +00:00
- name: docker-publish
image: plugins/docker
settings:
dockerfile: package/Dockerfile
password:
from_secret: docker_password
2019-02-23 03:02:06 +00:00
repo: "rancher/k3s"
2019-02-05 04:42:35 +00:00
username:
from_secret: docker_username
when:
instance:
- drone-publish.k3s.io
2019-02-05 04:42:35 +00:00
ref:
- refs/head/master
- refs/tags/*
event:
- tag
2019-11-01 16:48:28 +00:00
- name: test
image: rancher/dapper:v0.5.0
2019-11-11 22:18:16 +00:00
secrets: [ gcloud_auth ]
environment:
ENABLE_REGISTRY: 'true'
2019-11-11 22:18:16 +00:00
GCLOUD_AUTH:
from_secret: gcloud_auth
commands:
- docker build --target test-k3s -t k3s:test-${DRONE_STAGE_ARCH}-${DRONE_COMMIT} -f Dockerfile.test .
- >
docker run -i -e REPO -e TAG -e DRONE_TAG -e DRONE_BUILD_EVENT -e IMAGE_NAME -e GCLOUD_AUTH -e SONOBUOY_VERSION -e ENABLE_REGISTRY
-v /var/run/docker.sock:/var/run/docker.sock --privileged --network host -v /tmp:/tmp k3s:test-${DRONE_STAGE_ARCH}-${DRONE_COMMIT}
volumes:
- name: docker
path: /var/run/docker.sock
2019-02-05 04:42:35 +00:00
volumes:
- name: docker
host:
path: /var/run/docker.sock
2019-01-26 05:10:04 +00:00
2022-04-15 16:41:40 +00:00
---
kind: pipeline
name: s390x
platform:
os: linux
arch: amd64
# Hack needed for s390x: https://gist.github.com/colstrom/c2f359f72658aaabb44150ac20b16d7c#gistcomment-3858388
node:
arch: s390x
clone:
disable: true
steps:
- name: clone
image: alpine/git:v2.30.2-s390x
commands:
- git clone $DRONE_GIT_HTTP_URL .
- git fetch origin $DRONE_COMMIT_REF
- git checkout $DRONE_COMMIT -b origin/$DRONE_TARGET_BRANCH
- name: build
image: rancher/dapper:v0.5.8
secrets: [ gcloud_auth ]
environment:
GCLOUD_AUTH:
from_secret: gcloud_auth
commands:
- dapper ci
- echo "${DRONE_TAG}-s390x" | sed -e 's/+/-/g' >.tags
volumes:
- name: docker
path: /var/run/docker.sock
- name: github_binary_release
image: rancher/drone-images:github-release-s390x
settings:
api_key:
from_secret: github_token
prerelease: true
checksum:
- sha256
checksum_file: CHECKSUMsum-s390x.txt
checksum_flatten: true
files:
- "dist/artifacts/*"
when:
instance:
- drone-publish.k3s.io
ref:
- refs/head/master
- refs/tags/*
event:
- tag
- name: docker-publish
image: rancher/drone-images:docker-s390x
volumes:
- name: docker
path: /var/run/docker.sock
settings:
dockerfile: package/Dockerfile
password:
from_secret: docker_password
repo: "rancher/k3s"
username:
from_secret: docker_username
when:
instance:
- drone-publish.k3s.io
ref:
- refs/head/master
- refs/tags/*
event:
- tag
- name: test
image: rancher/dapper:v0.5.8
secrets: [ gcloud_auth ]
environment:
ENABLE_REGISTRY: 'true'
GCLOUD_AUTH:
from_secret: gcloud_auth
commands:
# we hardcode s390x as the arch because DRONE_STAGE_ARCH is set to amd64
- docker build --target test-k3s -t k3s:test-s390x-${DRONE_COMMIT} -f Dockerfile.test .
- >
docker run -i -e REPO -e TAG -e DRONE_TAG -e DRONE_BUILD_EVENT -e IMAGE_NAME -e GCLOUD_AUTH -e SONOBUOY_VERSION -e ENABLE_REGISTRY
-v /var/run/docker.sock:/var/run/docker.sock --privileged --network host -v /tmp:/tmp k3s:test-s390x-${DRONE_COMMIT}
2022-04-15 16:41:40 +00:00
volumes:
- name: docker
path: /var/run/docker.sock
volumes:
- name: docker
host:
path: /var/run/docker.sock
2019-01-26 05:10:04 +00:00
---
kind: pipeline
name: validate_go_mods
platform:
os: linux
arch: amd64
steps:
- name: validate_go_mods
image: rancher/dapper:v0.5.0
commands:
- docker build --target test-mods -t k3s:mod -f Dockerfile.test .
- docker run -i k3s:mod
volumes:
- name: docker
path: /var/run/docker.sock
volumes:
- name: docker
host:
path: /var/run/docker.sock
---
kind: pipeline
2019-02-05 04:42:35 +00:00
name: manifest
2019-01-26 05:10:04 +00:00
platform:
os: linux
2019-02-05 04:42:35 +00:00
arch: amd64
2019-01-26 05:10:04 +00:00
steps:
2019-02-05 04:42:35 +00:00
- name: manifest
2020-01-20 20:29:48 +00:00
image: plugins/docker
2020-01-07 00:29:37 +00:00
environment:
2020-01-20 20:29:48 +00:00
DOCKER_USERNAME:
2019-02-05 04:42:35 +00:00
from_secret: docker_username
2020-01-20 20:29:48 +00:00
DOCKER_PASSWORD:
2019-02-05 04:42:35 +00:00
from_secret: docker_password
2020-01-20 20:29:48 +00:00
settings:
dry_run: true
dockerfile: Dockerfile.manifest
repo: "rancher/k3s-manifest"
build_args_from_env:
- DOCKER_USERNAME
- DOCKER_PASSWORD
- DRONE_TAG
trigger:
instance:
- drone-publish.k3s.io
ref:
- refs/head/master
- refs/tags/*
event:
- tag
2019-01-26 05:10:04 +00:00
2019-02-05 04:42:35 +00:00
depends_on:
- amd64
- arm64
2022-04-15 16:41:40 +00:00
- s390x
2019-02-05 04:42:35 +00:00
- arm
2020-02-14 22:48:28 +00:00
---
kind: pipeline
name: dispatch
platform:
os: linux
arch: amd64
steps:
- name: dispatch
image: curlimages/curl:7.74.0
user: root
environment:
PAT_USERNAME:
from_secret: pat_username
PAT_TOKEN:
from_secret: github_token
commands:
- apk -U --no-cache add bash
- scripts/dispatch
trigger:
instance:
- drone-publish.k3s.io
ref:
- refs/head/master
- refs/tags/*
event:
- tag
2020-02-27 00:55:32 +00:00
depends_on:
- manifest