mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
Fix dev builds
Drone ssh defaults to arm now.. so need to specify amd64 arch
This commit is contained in:
parent
3d760077b6
commit
62fbf868fe
1 changed files with 9 additions and 1 deletions
10
.drone.yml
10
.drone.yml
|
@ -2,6 +2,10 @@ kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: "Release firmware"
|
name: "Release firmware"
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Update submodules"
|
- name: "Update submodules"
|
||||||
image: alpine/git
|
image: alpine/git
|
||||||
|
@ -249,6 +253,10 @@ kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: "Dev build"
|
name: "Dev build"
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Update submodules"
|
- name: "Update submodules"
|
||||||
image: alpine/git
|
image: alpine/git
|
||||||
|
@ -304,7 +312,7 @@ steps:
|
||||||
- ls -laS dev
|
- ls -laS dev
|
||||||
|
|
||||||
- name: "Clean dev folder"
|
- name: "Clean dev folder"
|
||||||
image: appleboy/drone-ssh
|
image: appleboy/drone-ssh:linux-amd64
|
||||||
settings:
|
settings:
|
||||||
host:
|
host:
|
||||||
from_secret: dep_host
|
from_secret: dep_host
|
||||||
|
|
Loading…
Reference in a new issue