Compare commits
1 Commits
6b095e051a
...
dac3d49127
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dac3d49127 |
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