We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7225ef commit 4a3759cCopy full SHA for 4a3759c
.drone.jsonnet
@@ -112,6 +112,8 @@ local build(board, arch, mode, distro) = {
112
[
113
build(board.name, board.arch, board.type, distro)
114
for board in [
115
+ { name: "amd64", arch: "amd64", type: "all"},
116
+ { name: "amd64-uefi", arch: "amd64", type: "all"},
117
{ name: "cubieboard2", arch: "arm", type: "all" },
118
{ name: "cubieboard", arch: "arm", type: "all" },
119
{ name: "beagleboneblack", arch: "arm", type: "all" },
@@ -134,8 +136,6 @@ local build(board, arch, mode, distro) = {
134
136
{ name: "odroid-n2", arch: "arm", type: "all" },
135
137
{ name: "lime2", arch: "arm", type: "all" },
138
{ name: "btt-cb1", arch: "arm64", type: "all" },
- { name: "amd64", arch: "amd64", type: "all"},
- { name: "amd64-uefi", arch: "amd64", type: "all"},
139
{ name: "odroid-hc4", arch: "arm64", type: "all"},
140
]
141
for distro in [
vbox.sh
@@ -11,6 +11,7 @@ DISTRO=$2
11
12
echo "$KEY" > ssh.key
13
chmod 600 ssh.key
14
+ssh -i ssh.key -o StrictHostKeyChecking=no root@$HOST mkdir -p /data/drone-$DISTRO
15
scp -i ssh.key -o StrictHostKeyChecking=no $IMAGE.img root@$HOST:/data/drone-$DISTRO
16
scp -i ssh.key -o StrictHostKeyChecking=no create_vbox_image.sh root@$HOST:/data/drone-$DISTRO
17
ssh -i ssh.key -o StrictHostKeyChecking=no root@$HOST /data/drone-$DISTRO/create_vbox_image.sh $IMAGE
0 commit comments