Compare commits
1 Commits
master
...
4cb13f906f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4cb13f906f |
20
.drone.star
Normal file
20
.drone.star
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
def main(ctx):
|
||||||
|
return [
|
||||||
|
step("amd64"),
|
||||||
|
step("arm64"),
|
||||||
|
]
|
||||||
|
|
||||||
|
def step(arch):
|
||||||
|
return {
|
||||||
|
"kind": "pipeline",
|
||||||
|
"name": "build-%s" % arch,
|
||||||
|
"steps": [
|
||||||
|
{
|
||||||
|
"name": "build",
|
||||||
|
"image": "alpine",
|
||||||
|
"commands": [
|
||||||
|
"echo HELLO WORLD!!!"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user