mirror of
https://github.com/thegeeklab/wp-matrix.git
synced 2024-11-09 18:10:39 +00:00
Merge pull request #14 from drone-plugins/upgrade-drone
Upgrade and switch to Drone 1.0.0
This commit is contained in:
commit
975fd8c0a7
@ -1,68 +0,0 @@
|
|||||||
version: '{build}'
|
|
||||||
image: 'Visual Studio 2017'
|
|
||||||
platform: 'x64'
|
|
||||||
|
|
||||||
clone_folder: 'c:\gopath\src\github.com\drone-plugins\drone-matrix'
|
|
||||||
max_jobs: 1
|
|
||||||
|
|
||||||
environment:
|
|
||||||
GOPATH: c:\gopath
|
|
||||||
DOCKER_USERNAME:
|
|
||||||
secure: '4YzzahbEiMZQJpOCOd1LAw=='
|
|
||||||
DOCKER_PASSWORD:
|
|
||||||
secure: 'VqO/G3Zfslu6zSLdwHKO+Q=='
|
|
||||||
|
|
||||||
install:
|
|
||||||
- ps: |
|
|
||||||
docker version
|
|
||||||
go version
|
|
||||||
- ps: |
|
|
||||||
$env:Path = "c:\gopath\bin;$env:Path"
|
|
||||||
|
|
||||||
build_script:
|
|
||||||
- ps: |
|
|
||||||
go get -u github.com/golang/dep/cmd/dep
|
|
||||||
dep ensure
|
|
||||||
|
|
||||||
if ( $env:APPVEYOR_REPO_TAG -eq 'false' ) {
|
|
||||||
go build -ldflags "-X main.build=$env:APPVEYOR_BUILD_VERSION" -a -o release/drone-matrix.exe
|
|
||||||
} else {
|
|
||||||
$version = $env:APPVEYOR_REPO_TAG_NAME.substring(1)
|
|
||||||
go build -ldflags "-X main.version=$version -X main.build=$env:APPVEYOR_BUILD_VERSION" -a -o release/drone-matrix.exe
|
|
||||||
}
|
|
||||||
|
|
||||||
docker pull microsoft/nanoserver:10.0.14393.1593
|
|
||||||
docker build -f Dockerfile.windows -t plugins/matrix:windows-amd64 .
|
|
||||||
|
|
||||||
test_script:
|
|
||||||
- ps: |
|
|
||||||
docker run --rm plugins/matrix:windows-amd64 --version
|
|
||||||
|
|
||||||
deploy_script:
|
|
||||||
- ps: |
|
|
||||||
$ErrorActionPreference = 'Stop';
|
|
||||||
|
|
||||||
if ( $env:APPVEYOR_PULL_REQUEST_NUMBER ) {
|
|
||||||
Write-Host Nothing to deploy.
|
|
||||||
} else {
|
|
||||||
echo $env:DOCKER_PASSWORD | docker login --username $env:DOCKER_USERNAME --password-stdin
|
|
||||||
|
|
||||||
if ( $env:APPVEYOR_REPO_TAG -eq 'true' ) {
|
|
||||||
$major,$minor,$patch = $env:APPVEYOR_REPO_TAG_NAME.substring(1).split('.')
|
|
||||||
|
|
||||||
docker push plugins/matrix:windows-amd64
|
|
||||||
|
|
||||||
docker tag plugins/matrix:windows-amd64 plugins/matrix:$major.$minor.$patch-windows-amd64
|
|
||||||
docker push plugins/matrix:$major.$minor.$patch-windows-amd64
|
|
||||||
|
|
||||||
docker tag plugins/matrix:windows-amd64 plugins/matrix:$major.$minor-windows-amd64
|
|
||||||
docker push plugins/matrix:$major.$minor-windows-amd64
|
|
||||||
|
|
||||||
docker tag plugins/matrix:windows-amd64 plugins/matrix:$major-windows-amd64
|
|
||||||
docker push plugins/matrix:$major-windows-amd64
|
|
||||||
} else {
|
|
||||||
if ( $env:APPVEYOR_REPO_BRANCH -eq 'master' ) {
|
|
||||||
docker push plugins/matrix:windows-amd64
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
169
.drone.jsonnet
Normal file
169
.drone.jsonnet
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
local PipelineTesting = {
|
||||||
|
kind: "pipeline",
|
||||||
|
name: "testing",
|
||||||
|
platform: {
|
||||||
|
os: "linux",
|
||||||
|
arch: "amd64",
|
||||||
|
},
|
||||||
|
steps: [
|
||||||
|
{
|
||||||
|
name: "vet",
|
||||||
|
image: "golang:1.11",
|
||||||
|
pull: "always",
|
||||||
|
environment: {
|
||||||
|
GO111MODULE: "on",
|
||||||
|
},
|
||||||
|
commands: [
|
||||||
|
"go vet ./...",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "test",
|
||||||
|
image: "golang:1.11",
|
||||||
|
pull: "always",
|
||||||
|
environment: {
|
||||||
|
GO111MODULE: "on",
|
||||||
|
},
|
||||||
|
commands: [
|
||||||
|
"go test -cover ./...",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
trigger: {
|
||||||
|
branch: [ "master" ],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
local PipelineBuild(os="linux", arch="amd64") = {
|
||||||
|
kind: "pipeline",
|
||||||
|
name: os + "-" + arch,
|
||||||
|
platform: {
|
||||||
|
os: os,
|
||||||
|
arch: arch,
|
||||||
|
},
|
||||||
|
steps: [
|
||||||
|
{
|
||||||
|
name: "build-push",
|
||||||
|
image: "golang:1.11",
|
||||||
|
pull: "always",
|
||||||
|
environment: {
|
||||||
|
CGO_ENABLED: "0",
|
||||||
|
GO111MODULE: "on",
|
||||||
|
},
|
||||||
|
commands: [
|
||||||
|
"go build -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/" + os + "/" + arch + "/drone-matrix",
|
||||||
|
],
|
||||||
|
when: {
|
||||||
|
event: [ "push", "pull_request" ],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "build-tag",
|
||||||
|
image: "golang:1.11",
|
||||||
|
pull: "always",
|
||||||
|
environment: {
|
||||||
|
CGO_ENABLED: "0",
|
||||||
|
GO111MODULE: "on",
|
||||||
|
},
|
||||||
|
commands: [
|
||||||
|
"go build -v -ldflags \"-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/" + os + "/" + arch + "/drone-matrix",
|
||||||
|
],
|
||||||
|
when: {
|
||||||
|
event: [ "tag" ],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "executable",
|
||||||
|
image: "golang:1.11",
|
||||||
|
pull: "always",
|
||||||
|
commands: [
|
||||||
|
"./release/" + os + "/" + arch + "/drone-matrix --help",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "dryrun",
|
||||||
|
image: "plugins/docker:" + os + "-" + arch,
|
||||||
|
pull: "always",
|
||||||
|
settings: {
|
||||||
|
dry_run: true,
|
||||||
|
tags: os + "-" + arch,
|
||||||
|
dockerfile: "docker/Dockerfile." + os + "." + arch,
|
||||||
|
repo: "plugins/matrix",
|
||||||
|
username: { "from_secret": "docker_username" },
|
||||||
|
password: { "from_secret": "docker_password" },
|
||||||
|
},
|
||||||
|
when: {
|
||||||
|
event: [ "pull_request" ],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "publish",
|
||||||
|
image: "plugins/docker:" + os + "-" + arch,
|
||||||
|
pull: "always",
|
||||||
|
settings: {
|
||||||
|
auto_tag: true,
|
||||||
|
auto_tag_suffix: os + "-" + arch,
|
||||||
|
dockerfile: "docker/Dockerfile." + os + "." + arch,
|
||||||
|
repo: "plugins/matrix",
|
||||||
|
username: { "from_secret": "docker_username" },
|
||||||
|
password: { "from_secret": "docker_password" },
|
||||||
|
},
|
||||||
|
when: {
|
||||||
|
event: [ "push", "tag" ],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
depends_on: [
|
||||||
|
"testing",
|
||||||
|
],
|
||||||
|
trigger: {
|
||||||
|
branch: [ "master" ],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
local PipelineNotifications = {
|
||||||
|
kind: "pipeline",
|
||||||
|
name: "notifications",
|
||||||
|
platform: {
|
||||||
|
os: "linux",
|
||||||
|
arch: "amd64",
|
||||||
|
},
|
||||||
|
steps: [
|
||||||
|
{
|
||||||
|
name: "manifest",
|
||||||
|
image: "plugins/manifest:1",
|
||||||
|
pull: "always",
|
||||||
|
settings: {
|
||||||
|
username: { "from_secret": "docker_username" },
|
||||||
|
password: { "from_secret": "docker_password" },
|
||||||
|
spec: "docker/manifest.tmpl",
|
||||||
|
ignore_missing: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "microbadger",
|
||||||
|
image: "plugins/webhook:1",
|
||||||
|
pull: "always",
|
||||||
|
settings: {
|
||||||
|
url: { "from_secret": "microbadger_url" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
depends_on: [
|
||||||
|
"linux-amd64",
|
||||||
|
"linux-arm64",
|
||||||
|
"linux-arm",
|
||||||
|
],
|
||||||
|
trigger: {
|
||||||
|
branch: [ "master" ],
|
||||||
|
event: [ "push", "tag" ],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
[
|
||||||
|
PipelineTesting,
|
||||||
|
PipelineBuild("linux", "amd64"),
|
||||||
|
PipelineBuild("linux", "arm64"),
|
||||||
|
PipelineBuild("linux", "arm"),
|
||||||
|
PipelineNotifications,
|
||||||
|
]
|
76
.drone.windows.yml
Normal file
76
.drone.windows.yml
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: windows-amd64
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: windows
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build-push
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- "go build -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/windows/amd64/drone-matrix"
|
||||||
|
environment:
|
||||||
|
CGO_ENABLED: 0
|
||||||
|
GO111MODULE: on
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
- name: build-tag
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- "go build -v -ldflags \"-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/windows/amd64/drone-matrix"
|
||||||
|
environment:
|
||||||
|
CGO_ENABLED: 0
|
||||||
|
GO111MODULE: on
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: executable
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- ./release/windows/amd64/drone-matrix --help
|
||||||
|
|
||||||
|
- name: dryrun
|
||||||
|
pull: always
|
||||||
|
image: plugins/docker:windows-amd64
|
||||||
|
settings:
|
||||||
|
dockerfile: docker/Dockerfile.windows.amd64
|
||||||
|
dry_run: true
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
repo: plugins/matrix
|
||||||
|
tags: windows-amd64
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
- name: publish
|
||||||
|
pull: always
|
||||||
|
image: plugins/docker:windows-amd64
|
||||||
|
settings:
|
||||||
|
auto_tag: true
|
||||||
|
auto_tag_suffix: windows-amd64
|
||||||
|
dockerfile: docker/Dockerfile.windows.amd64
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
repo: plugins/matrix
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- master
|
395
.drone.yml
395
.drone.yml
@ -1,148 +1,309 @@
|
|||||||
workspace:
|
---
|
||||||
base: /go
|
kind: pipeline
|
||||||
path: src/github.com/drone-plugins/drone-matrix
|
name: testing
|
||||||
|
|
||||||
pipeline:
|
platform:
|
||||||
deps:
|
os: linux
|
||||||
image: golang:1.10
|
arch: amd64
|
||||||
pull: true
|
|
||||||
commands:
|
|
||||||
- go get -u github.com/golang/dep/cmd/dep
|
|
||||||
- dep ensure
|
|
||||||
|
|
||||||
test:
|
steps:
|
||||||
image: golang:1.10
|
- name: vet
|
||||||
pull: true
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
commands:
|
commands:
|
||||||
- go vet ./...
|
- go vet ./...
|
||||||
|
environment:
|
||||||
|
GO111MODULE: on
|
||||||
|
|
||||||
|
- name: test
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
- go test -cover ./...
|
- go test -cover ./...
|
||||||
|
|
||||||
build_linux_amd64:
|
|
||||||
image: golang:1.10
|
|
||||||
pull: true
|
|
||||||
group: build
|
|
||||||
environment:
|
environment:
|
||||||
- GOOS=linux
|
GO111MODULE: on
|
||||||
- GOARCH=amd64
|
|
||||||
- CGO_ENABLED=0
|
|
||||||
commands:
|
|
||||||
- |
|
|
||||||
if test "${DRONE_TAG}" = ""; then
|
|
||||||
go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/amd64/drone-matrix
|
|
||||||
else
|
|
||||||
go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/amd64/drone-matrix
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_linux_i386:
|
trigger:
|
||||||
image: golang:1.10
|
branch:
|
||||||
pull: true
|
- master
|
||||||
group: build
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: linux-amd64
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build-push
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- "go build -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/amd64/drone-matrix"
|
||||||
environment:
|
environment:
|
||||||
- GOOS=linux
|
CGO_ENABLED: 0
|
||||||
- GOARCH=386
|
GO111MODULE: on
|
||||||
- CGO_ENABLED=0
|
when:
|
||||||
commands:
|
event:
|
||||||
- |
|
- push
|
||||||
if test "${DRONE_TAG}" = ""; then
|
- pull_request
|
||||||
go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/i386/drone-matrix
|
|
||||||
else
|
|
||||||
go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/i386/drone-matrix
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_linux_arm64:
|
- name: build-tag
|
||||||
image: golang:1.10
|
pull: always
|
||||||
pull: true
|
image: golang:1.11
|
||||||
group: build
|
commands:
|
||||||
|
- "go build -v -ldflags \"-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/amd64/drone-matrix"
|
||||||
environment:
|
environment:
|
||||||
- GOOS=linux
|
CGO_ENABLED: 0
|
||||||
- GOARCH=arm64
|
GO111MODULE: on
|
||||||
- CGO_ENABLED=0
|
when:
|
||||||
commands:
|
event:
|
||||||
- |
|
- tag
|
||||||
if test "${DRONE_TAG}" = ""; then
|
|
||||||
go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm64/drone-matrix
|
|
||||||
else
|
|
||||||
go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm64/drone-matrix
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_linux_arm:
|
- name: executable
|
||||||
image: golang:1.10
|
pull: always
|
||||||
pull: true
|
image: golang:1.11
|
||||||
group: build
|
|
||||||
environment:
|
|
||||||
- GOOS=linux
|
|
||||||
- GOARCH=arm
|
|
||||||
- CGO_ENABLED=0
|
|
||||||
- GOARM=7
|
|
||||||
commands:
|
commands:
|
||||||
- |
|
- ./release/linux/amd64/drone-matrix --help
|
||||||
if test "${DRONE_TAG}" = ""; then
|
|
||||||
go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm/drone-matrix
|
|
||||||
else
|
|
||||||
go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm/drone-matrix
|
|
||||||
fi
|
|
||||||
|
|
||||||
publish_linux_amd64:
|
- name: dryrun
|
||||||
image: plugins/docker:17.12
|
pull: always
|
||||||
pull: true
|
image: plugins/docker:linux-amd64
|
||||||
secrets: [ docker_username, docker_password ]
|
settings:
|
||||||
group: docker
|
dockerfile: docker/Dockerfile.linux.amd64
|
||||||
|
dry_run: true
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
repo: plugins/matrix
|
repo: plugins/matrix
|
||||||
|
tags: linux-amd64
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
- name: publish
|
||||||
|
pull: always
|
||||||
|
image: plugins/docker:linux-amd64
|
||||||
|
settings:
|
||||||
auto_tag: true
|
auto_tag: true
|
||||||
auto_tag_suffix: linux-amd64
|
auto_tag_suffix: linux-amd64
|
||||||
dockerfile: Dockerfile
|
dockerfile: docker/Dockerfile.linux.amd64
|
||||||
when:
|
password:
|
||||||
event: [ push, tag ]
|
from_secret: docker_password
|
||||||
|
|
||||||
publish_linux_i386:
|
|
||||||
image: plugins/docker:17.12
|
|
||||||
pull: true
|
|
||||||
secrets: [ docker_username, docker_password ]
|
|
||||||
group: docker
|
|
||||||
repo: plugins/matrix
|
repo: plugins/matrix
|
||||||
auto_tag: true
|
username:
|
||||||
auto_tag_suffix: linux-i386
|
from_secret: docker_username
|
||||||
dockerfile: Dockerfile.i386
|
|
||||||
when:
|
when:
|
||||||
event: [ push, tag ]
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
publish_linux_arm64:
|
trigger:
|
||||||
image: plugins/docker:17.12
|
branch:
|
||||||
pull: true
|
- master
|
||||||
secrets: [ docker_username, docker_password ]
|
|
||||||
group: docker
|
depends_on:
|
||||||
|
- testing
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: linux-arm64
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: arm64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build-push
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- "go build -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/arm64/drone-matrix"
|
||||||
|
environment:
|
||||||
|
CGO_ENABLED: 0
|
||||||
|
GO111MODULE: on
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
- name: build-tag
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- "go build -v -ldflags \"-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/arm64/drone-matrix"
|
||||||
|
environment:
|
||||||
|
CGO_ENABLED: 0
|
||||||
|
GO111MODULE: on
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: executable
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- ./release/linux/arm64/drone-matrix --help
|
||||||
|
|
||||||
|
- name: dryrun
|
||||||
|
pull: always
|
||||||
|
image: plugins/docker:linux-arm64
|
||||||
|
settings:
|
||||||
|
dockerfile: docker/Dockerfile.linux.arm64
|
||||||
|
dry_run: true
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
repo: plugins/matrix
|
repo: plugins/matrix
|
||||||
|
tags: linux-arm64
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
- name: publish
|
||||||
|
pull: always
|
||||||
|
image: plugins/docker:linux-arm64
|
||||||
|
settings:
|
||||||
auto_tag: true
|
auto_tag: true
|
||||||
auto_tag_suffix: linux-arm64
|
auto_tag_suffix: linux-arm64
|
||||||
dockerfile: Dockerfile.arm64
|
dockerfile: docker/Dockerfile.linux.arm64
|
||||||
when:
|
password:
|
||||||
event: [ push, tag ]
|
from_secret: docker_password
|
||||||
|
|
||||||
publish_linux_arm:
|
|
||||||
image: plugins/docker:17.12
|
|
||||||
pull: true
|
|
||||||
secrets: [ docker_username, docker_password ]
|
|
||||||
group: docker
|
|
||||||
repo: plugins/matrix
|
repo: plugins/matrix
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- testing
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: linux-arm
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: arm
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build-push
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- "go build -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/arm/drone-matrix"
|
||||||
|
environment:
|
||||||
|
CGO_ENABLED: 0
|
||||||
|
GO111MODULE: on
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
- name: build-tag
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- "go build -v -ldflags \"-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/arm/drone-matrix"
|
||||||
|
environment:
|
||||||
|
CGO_ENABLED: 0
|
||||||
|
GO111MODULE: on
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: executable
|
||||||
|
pull: always
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- ./release/linux/arm/drone-matrix --help
|
||||||
|
|
||||||
|
- name: dryrun
|
||||||
|
pull: always
|
||||||
|
image: plugins/docker:linux-arm
|
||||||
|
settings:
|
||||||
|
dockerfile: docker/Dockerfile.linux.arm
|
||||||
|
dry_run: true
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
repo: plugins/matrix
|
||||||
|
tags: linux-arm
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
- name: publish
|
||||||
|
pull: always
|
||||||
|
image: plugins/docker:linux-arm
|
||||||
|
settings:
|
||||||
auto_tag: true
|
auto_tag: true
|
||||||
auto_tag_suffix: linux-arm
|
auto_tag_suffix: linux-arm
|
||||||
dockerfile: Dockerfile.arm
|
dockerfile: docker/Dockerfile.linux.arm
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
repo: plugins/matrix
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
when:
|
when:
|
||||||
event: [ push, tag ]
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
manifests:
|
trigger:
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- testing
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: notifications
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: manifest
|
||||||
|
pull: always
|
||||||
image: plugins/manifest:1
|
image: plugins/manifest:1
|
||||||
pull: true
|
settings:
|
||||||
secrets: [ docker_username, docker_password ]
|
|
||||||
spec: manifest.tmpl
|
|
||||||
auto_tag: true
|
|
||||||
ignore_missing: true
|
ignore_missing: true
|
||||||
when:
|
password:
|
||||||
event: [ push, tag ]
|
from_secret: docker_password
|
||||||
|
spec: docker/manifest.tmpl
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
|
||||||
microbadger:
|
- name: microbadger
|
||||||
|
pull: always
|
||||||
image: plugins/webhook:1
|
image: plugins/webhook:1
|
||||||
pull: true
|
settings:
|
||||||
secrets: [ webhook_url ]
|
url:
|
||||||
when:
|
from_secret: microbadger_url
|
||||||
status: [ success ]
|
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- linux-amd64
|
||||||
|
- linux-arm64
|
||||||
|
- linux-arm
|
||||||
|
|
||||||
|
...
|
||||||
|
9
.github/issue_template.md
vendored
9
.github/issue_template.md
vendored
@ -0,0 +1,9 @@
|
|||||||
|
<!-- PLEASE READ BEFORE DELETING
|
||||||
|
|
||||||
|
Bugs or Issues? Due to the high number of false positive issues we receive,
|
||||||
|
please do not create a GitHub issue until you have discussed and verified
|
||||||
|
with community support at:
|
||||||
|
|
||||||
|
https://discourse.drone.io/
|
||||||
|
|
||||||
|
-->
|
73
.github/settings.yml
vendored
Normal file
73
.github/settings.yml
vendored
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
repository:
|
||||||
|
name: drone-matrix
|
||||||
|
description: Drone plugin for sending Matrix notifications
|
||||||
|
homepage: http://plugins.drone.io/drone-plugins/drone-matrix
|
||||||
|
topics: drone, drone-plugin
|
||||||
|
|
||||||
|
private: false
|
||||||
|
has_issues: true
|
||||||
|
has_wiki: false
|
||||||
|
has_downloads: false
|
||||||
|
|
||||||
|
default_branch: master
|
||||||
|
|
||||||
|
allow_squash_merge: true
|
||||||
|
allow_merge_commit: true
|
||||||
|
allow_rebase_merge: true
|
||||||
|
|
||||||
|
labels:
|
||||||
|
- name: bug
|
||||||
|
color: d73a4a
|
||||||
|
description: Something isn't working
|
||||||
|
- name: duplicate
|
||||||
|
color: cfd3d7
|
||||||
|
description: This issue or pull request already exists
|
||||||
|
- name: enhancement
|
||||||
|
color: a2eeef
|
||||||
|
description: New feature or request
|
||||||
|
- name: good first issue
|
||||||
|
color: 7057ff
|
||||||
|
description: Good for newcomers
|
||||||
|
- name: help wanted
|
||||||
|
color: 008672
|
||||||
|
description: Extra attention is needed
|
||||||
|
- name: invalid
|
||||||
|
color: e4e669
|
||||||
|
description: This doesn't seem right
|
||||||
|
- name: question
|
||||||
|
color: d876e3
|
||||||
|
description: Further information is requested
|
||||||
|
- name: renovate
|
||||||
|
color: e99695
|
||||||
|
description: Automated action from Renovate
|
||||||
|
- name: wontfix
|
||||||
|
color: ffffff
|
||||||
|
description: This will not be worked on
|
||||||
|
|
||||||
|
teams:
|
||||||
|
- name: Admins
|
||||||
|
permission: admin
|
||||||
|
- name: Captain
|
||||||
|
permission: admin
|
||||||
|
- name: Maintainers
|
||||||
|
permission: push
|
||||||
|
|
||||||
|
branches:
|
||||||
|
- name: master
|
||||||
|
protection:
|
||||||
|
required_pull_request_reviews:
|
||||||
|
required_approving_review_count: 1
|
||||||
|
dismiss_stale_reviews: false
|
||||||
|
require_code_owner_reviews: false
|
||||||
|
dismissal_restrictions:
|
||||||
|
teams:
|
||||||
|
- Admins
|
||||||
|
- Captain
|
||||||
|
required_status_checks:
|
||||||
|
strict: true
|
||||||
|
contexts:
|
||||||
|
- continuous-integration/drone/pr
|
||||||
|
enforce_admins: false
|
||||||
|
restrictions:
|
||||||
|
users: []
|
||||||
|
teams: []
|
@ -1,9 +0,0 @@
|
|||||||
FROM plugins/base:multiarch
|
|
||||||
|
|
||||||
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" \
|
|
||||||
org.label-schema.name="Drone Matrix" \
|
|
||||||
org.label-schema.vendor="Drone.IO Community" \
|
|
||||||
org.label-schema.schema-version="1.0"
|
|
||||||
|
|
||||||
ADD release/linux/i386/drone-matrix /bin/
|
|
||||||
ENTRYPOINT ["/bin/drone-matrix"]
|
|
@ -1,11 +1,12 @@
|
|||||||
# drone-matrix
|
# drone-matrix
|
||||||
|
|
||||||
[![Build Status](http://beta.drone.io/api/badges/drone-plugins/drone-matrix/status.svg)](http://beta.drone.io/drone-plugins/drone-matrix)
|
[![Build Status](http://cloud.drone.io/api/badges/drone-plugins/drone-matrix/status.svg)](http://cloud.drone.io/drone-plugins/drone-matrix)
|
||||||
|
[![Gitter chat](https://badges.gitter.im/drone/drone.png)](https://gitter.im/drone/drone)
|
||||||
[![Join the discussion at https://discourse.drone.io](https://img.shields.io/badge/discourse-forum-orange.svg)](https://discourse.drone.io)
|
[![Join the discussion at https://discourse.drone.io](https://img.shields.io/badge/discourse-forum-orange.svg)](https://discourse.drone.io)
|
||||||
[![Drone questions at https://stackoverflow.com](https://img.shields.io/badge/drone-stackoverflow-orange.svg)](https://stackoverflow.com/questions/tagged/drone.io)
|
[![Drone questions at https://stackoverflow.com](https://img.shields.io/badge/drone-stackoverflow-orange.svg)](https://stackoverflow.com/questions/tagged/drone.io)
|
||||||
|
[![](https://images.microbadger.com/badges/image/plugins/matrix.svg)](https://microbadger.com/images/plugins/matrix "Get your own image badge on microbadger.com")
|
||||||
[![Go Doc](https://godoc.org/github.com/drone-plugins/drone-matrix?status.svg)](http://godoc.org/github.com/drone-plugins/drone-matrix)
|
[![Go Doc](https://godoc.org/github.com/drone-plugins/drone-matrix?status.svg)](http://godoc.org/github.com/drone-plugins/drone-matrix)
|
||||||
[![Go Report](https://goreportcard.com/badge/github.com/drone-plugins/drone-matrix)](https://goreportcard.com/report/github.com/drone-plugins/drone-matrix)
|
[![Go Report](https://goreportcard.com/badge/github.com/drone-plugins/drone-matrix)](https://goreportcard.com/report/github.com/drone-plugins/drone-matrix)
|
||||||
[![](https://images.microbadger.com/badges/image/plugins/matrix.svg)](https://microbadger.com/images/plugins/matrix "Get your own image badge on microbadger.com")
|
|
||||||
|
|
||||||
Drone plugin for sending build notifications to [Matrix](https://matrix.org/). For the usage information and a listing of the available options please take a look at [the docs](http://plugins.drone.io/drone-plugins/drone-matrix/).
|
Drone plugin for sending build notifications to [Matrix](https://matrix.org/). For the usage information and a listing of the available options please take a look at [the docs](http://plugins.drone.io/drone-plugins/drone-matrix/).
|
||||||
|
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
# escape=`
|
# escape=`
|
||||||
FROM microsoft/nanoserver:10.0.14393.1593
|
FROM plugins/base:windows-amd64
|
||||||
|
|
||||||
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
|
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
|
||||||
org.label-schema.name="Drone Matrix" `
|
org.label-schema.name="Drone Matrix" `
|
||||||
org.label-schema.vendor="Drone.IO Community" `
|
org.label-schema.vendor="Drone.IO Community" `
|
||||||
org.label-schema.schema-version="1.0"
|
org.label-schema.schema-version="1.0"
|
||||||
|
|
||||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
|
||||||
|
|
||||||
ADD release\drone-matrix.exe c:\drone-matrix.exe
|
ADD release\drone-matrix.exe c:\drone-matrix.exe
|
||||||
ENTRYPOINT [ "c:\\drone-matrix.exe" ]
|
ENTRYPOINT [ "c:\\drone-matrix.exe" ]
|
@ -11,23 +11,21 @@ manifests:
|
|||||||
platform:
|
platform:
|
||||||
architecture: amd64
|
architecture: amd64
|
||||||
os: linux
|
os: linux
|
||||||
-
|
|
||||||
image: plugins/matrix:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}linux-i386
|
|
||||||
platform:
|
|
||||||
architecture: 386
|
|
||||||
os: linux
|
|
||||||
-
|
-
|
||||||
image: plugins/matrix:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}linux-arm64
|
image: plugins/matrix:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}linux-arm64
|
||||||
platform:
|
platform:
|
||||||
architecture: arm64
|
architecture: arm64
|
||||||
os: linux
|
os: linux
|
||||||
|
variant: v8
|
||||||
-
|
-
|
||||||
image: plugins/matrix:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}linux-arm
|
image: plugins/matrix:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}linux-arm
|
||||||
platform:
|
platform:
|
||||||
architecture: arm
|
architecture: arm
|
||||||
os: linux
|
os: linux
|
||||||
|
variant: v7
|
||||||
-
|
-
|
||||||
image: plugins/matrix:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}windows-amd64
|
image: plugins/matrix:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}windows-amd64
|
||||||
platform:
|
platform:
|
||||||
architecture: amd64
|
architecture: amd64
|
||||||
os: windows
|
os: windows
|
||||||
|
variant: 1809
|
Loading…
Reference in New Issue
Block a user