chore(CI): disabled build linux arm version in drone
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
61adf6c2bb
commit
a8ad48cb11
|
@ -4,13 +4,13 @@ local name = 'gorush';
|
||||||
[
|
[
|
||||||
pipeline.test,
|
pipeline.test,
|
||||||
pipeline.build(name, 'linux', 'amd64'),
|
pipeline.build(name, 'linux', 'amd64'),
|
||||||
pipeline.build(name, 'linux', 'arm64'),
|
// pipeline.build(name, 'linux', 'arm64'),
|
||||||
pipeline.build(name, 'linux', 'arm'),
|
// pipeline.build(name, 'linux', 'arm'),
|
||||||
pipeline.release,
|
pipeline.release,
|
||||||
pipeline.notifications(depends_on=[
|
pipeline.notifications(depends_on=[
|
||||||
'linux-amd64',
|
'linux-amd64',
|
||||||
'linux-arm64',
|
// 'linux-arm64',
|
||||||
'linux-arm',
|
// 'linux-arm',
|
||||||
'release-binary',
|
'release-binary',
|
||||||
]),
|
]),
|
||||||
]
|
]
|
||||||
|
|
120
.drone.yml
120
.drone.yml
|
@ -97,124 +97,6 @@ trigger:
|
||||||
depends_on:
|
depends_on:
|
||||||
- testing
|
- testing
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: linux-arm64
|
|
||||||
platform:
|
|
||||||
arch: arm64
|
|
||||||
os: linux
|
|
||||||
steps:
|
|
||||||
- commands:
|
|
||||||
- go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm64/gorush
|
|
||||||
environment:
|
|
||||||
CGO_ENABLED: "0"
|
|
||||||
image: golang:1.19
|
|
||||||
name: build-push
|
|
||||||
pull: always
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
exclude:
|
|
||||||
- tag
|
|
||||||
- commands:
|
|
||||||
- go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}'
|
|
||||||
-a -o release/linux/arm64/gorush
|
|
||||||
environment:
|
|
||||||
CGO_ENABLED: "0"
|
|
||||||
image: golang:1.19
|
|
||||||
name: build-tag
|
|
||||||
pull: always
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
- commands:
|
|
||||||
- ./release/linux/arm64/gorush --help
|
|
||||||
image: golang:1.19
|
|
||||||
name: executable
|
|
||||||
pull: always
|
|
||||||
- image: plugins/docker:linux-arm64
|
|
||||||
name: publish
|
|
||||||
pull: always
|
|
||||||
settings:
|
|
||||||
auto_tag: true
|
|
||||||
auto_tag_suffix: linux-arm64
|
|
||||||
cache_from: appleboy/gorush
|
|
||||||
daemon_off: "false"
|
|
||||||
dockerfile: docker/Dockerfile.linux.arm64
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
repo: appleboy/gorush
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
exclude:
|
|
||||||
- pull_request
|
|
||||||
trigger:
|
|
||||||
ref:
|
|
||||||
- refs/heads/master
|
|
||||||
- refs/pull/**
|
|
||||||
- refs/tags/**
|
|
||||||
---
|
|
||||||
depends_on:
|
|
||||||
- testing
|
|
||||||
kind: pipeline
|
|
||||||
name: linux-arm
|
|
||||||
platform:
|
|
||||||
arch: arm
|
|
||||||
os: linux
|
|
||||||
steps:
|
|
||||||
- commands:
|
|
||||||
- go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm/gorush
|
|
||||||
environment:
|
|
||||||
CGO_ENABLED: "0"
|
|
||||||
image: golang:1.19
|
|
||||||
name: build-push
|
|
||||||
pull: always
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
exclude:
|
|
||||||
- tag
|
|
||||||
- commands:
|
|
||||||
- go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}'
|
|
||||||
-a -o release/linux/arm/gorush
|
|
||||||
environment:
|
|
||||||
CGO_ENABLED: "0"
|
|
||||||
image: golang:1.19
|
|
||||||
name: build-tag
|
|
||||||
pull: always
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
- commands:
|
|
||||||
- ./release/linux/arm/gorush --help
|
|
||||||
image: golang:1.19
|
|
||||||
name: executable
|
|
||||||
pull: always
|
|
||||||
- image: plugins/docker:linux-arm
|
|
||||||
name: publish
|
|
||||||
pull: always
|
|
||||||
settings:
|
|
||||||
auto_tag: true
|
|
||||||
auto_tag_suffix: linux-arm
|
|
||||||
cache_from: appleboy/gorush
|
|
||||||
daemon_off: "false"
|
|
||||||
dockerfile: docker/Dockerfile.linux.arm
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
repo: appleboy/gorush
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
exclude:
|
|
||||||
- pull_request
|
|
||||||
trigger:
|
|
||||||
ref:
|
|
||||||
- refs/heads/master
|
|
||||||
- refs/pull/**
|
|
||||||
- refs/tags/**
|
|
||||||
---
|
|
||||||
depends_on:
|
|
||||||
- testing
|
|
||||||
kind: pipeline
|
|
||||||
name: release-binary
|
name: release-binary
|
||||||
platform:
|
platform:
|
||||||
arch: amd64
|
arch: amd64
|
||||||
|
@ -245,8 +127,6 @@ trigger:
|
||||||
---
|
---
|
||||||
depends_on:
|
depends_on:
|
||||||
- linux-amd64
|
- linux-amd64
|
||||||
- linux-arm64
|
|
||||||
- linux-arm
|
|
||||||
- release-binary
|
- release-binary
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: notifications
|
name: notifications
|
||||||
|
|
Loading…
Reference in New Issue