forked from spritsail/alpine
Compare commits
4 Commits
starlark
...
implicit-c
Author | SHA1 | Date | |
---|---|---|---|
a2a596cfc4
|
|||
7d52c725e4
|
|||
c936978f39
|
|||
42dc788197
|
52
.drone.star
52
.drone.star
@ -1,14 +1,14 @@
|
|||||||
def main(ctx):
|
def main(ctx):
|
||||||
versions = [
|
return [
|
||||||
["3.9",[]],
|
step("3.10"),
|
||||||
["3.10",[]],
|
step("3.11"),
|
||||||
["3.11", ["latest"]],
|
step("3.12"),
|
||||||
["edge", []],
|
step("3.13",["latest"]),
|
||||||
["chrislane", ["😍"]],
|
step("edge"),
|
||||||
]
|
]
|
||||||
return [step(v[0], v[1]) for v in versions] + [notify(["build-%s" % v for v, _ in versions])]
|
|
||||||
|
|
||||||
def step(alpinever,tags=[]):
|
def step(alpinever,tags=[]):
|
||||||
|
vertest = "grep -q '%s' /etc/alpine-release && " % alpinever if alpinever != "edge" else ""
|
||||||
return {
|
return {
|
||||||
"kind": "pipeline",
|
"kind": "pipeline",
|
||||||
"name": "build-%s" % alpinever,
|
"name": "build-%s" % alpinever,
|
||||||
@ -18,7 +18,6 @@ def step(alpinever,tags=[]):
|
|||||||
"image": "spritsail/docker-build",
|
"image": "spritsail/docker-build",
|
||||||
"pull": "always",
|
"pull": "always",
|
||||||
"settings": {
|
"settings": {
|
||||||
"repo": "alpine-dev-%s" % alpinever,
|
|
||||||
"build_args": [
|
"build_args": [
|
||||||
"ALPINE_TAG=%s" % alpinever,
|
"ALPINE_TAG=%s" % alpinever,
|
||||||
],
|
],
|
||||||
@ -29,8 +28,7 @@ def step(alpinever,tags=[]):
|
|||||||
"image": "spritsail/docker-test",
|
"image": "spritsail/docker-test",
|
||||||
"pull": "always",
|
"pull": "always",
|
||||||
"settings": {
|
"settings": {
|
||||||
"repo": "spritsail/alpine",
|
"run": vertest + "su-exec nobody apk --version",
|
||||||
"run": "su-exec nobody apk --version",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -38,17 +36,10 @@ def step(alpinever,tags=[]):
|
|||||||
"image": "spritsail/docker-publish",
|
"image": "spritsail/docker-publish",
|
||||||
"pull": "always",
|
"pull": "always",
|
||||||
"settings": {
|
"settings": {
|
||||||
"from": "alpine-dev-%s" % alpinever,
|
|
||||||
"repo": "spritsail/alpine",
|
"repo": "spritsail/alpine",
|
||||||
"tags": [alpinever] + tags,
|
"tags": [alpinever] + tags,
|
||||||
},
|
"username": {"from_secret": "docker_username"},
|
||||||
"environment": {
|
"password": {"from_secret": "docker_password"},
|
||||||
"DOCKER_USERNAME": {
|
|
||||||
"from_secret": "docker_username",
|
|
||||||
},
|
|
||||||
"DOCKER_PASSWORD": {
|
|
||||||
"from_secret": "docker_password",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
"when": {
|
"when": {
|
||||||
"branch": ["master"],
|
"branch": ["master"],
|
||||||
@ -58,26 +49,3 @@ def step(alpinever,tags=[]):
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
def notify(versions):
|
|
||||||
return {
|
|
||||||
"kind": "pipeline",
|
|
||||||
"name": "notify",
|
|
||||||
"depends_on": versions,
|
|
||||||
"when": {
|
|
||||||
"status": [ "success", "failure" ],
|
|
||||||
},
|
|
||||||
"steps": [
|
|
||||||
{
|
|
||||||
"name": "notify",
|
|
||||||
"image": "spritsail/notify",
|
|
||||||
"environment": {
|
|
||||||
"WEBHOOK_URL": {
|
|
||||||
"from_secret": "webhook_url",
|
|
||||||
},
|
|
||||||
"NOTIFY_TOKEN": {
|
|
||||||
"from_secret": "notify_token",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
ARG ALPINE_TAG=3.11
|
ARG ALPINE_TAG=3.13
|
||||||
|
|
||||||
FROM alpine:$ALPINE_TAG
|
FROM alpine:$ALPINE_TAG
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user