2022-08-10 23:10:39 +00:00
|
|
|
local archs = [
|
2022-09-07 18:50:04 +00:00
|
|
|
{ target: 'aarch64-unknown-linux-gnu', short: 'arm64-gnu' },
|
|
|
|
{ target: 'aarch64-unknown-linux-musl', short: 'arm64-musl' },
|
2022-09-07 20:15:58 +00:00
|
|
|
{ target: 'x86_64-pc-windows-gnu', short: 'windows-amd64' },
|
2022-09-07 18:50:04 +00:00
|
|
|
{ target: 'x86_64-unknown-linux-gnu', short: 'amd64-gnu' },
|
|
|
|
{ target: 'x86_64-unknown-linux-musl', short: 'amd64-musl' },
|
2022-08-10 23:11:42 +00:00
|
|
|
];
|
2022-08-10 23:10:39 +00:00
|
|
|
|
2022-09-07 20:18:38 +00:00
|
|
|
local getStepName(arch) = 'Build for ' + arch.short;
|
2022-08-10 23:10:39 +00:00
|
|
|
|
2022-09-07 20:15:58 +00:00
|
|
|
local getExeName(arch) = if std.startsWith(arch.short, 'windows') then '.exe' else '';
|
|
|
|
|
2022-09-07 20:10:29 +00:00
|
|
|
local add_build_steps() = [
|
|
|
|
{
|
|
|
|
name: getStepName(arch),
|
|
|
|
image: 'img.kie.rs/jjkiers/rust-dind-cross:1.62-slim',
|
|
|
|
volumes: [
|
|
|
|
{
|
|
|
|
name: 'dockersock',
|
|
|
|
path: '/var/run',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'rustup',
|
|
|
|
path: '/usr/local/rustup',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
commands: [
|
|
|
|
'echo Hello World from Jsonnet on ' + arch.target + '!',
|
|
|
|
'cross build --release --target ' + arch.target,
|
2022-09-07 20:15:58 +00:00
|
|
|
'cp target/' + arch.target + '/release/drone-test' + getExeName(arch) + ' artifacts/drone-test-' + arch.short + getExeName(arch),
|
2022-09-07 20:18:38 +00:00
|
|
|
'rm -rf target/' + arch.target + '/release/*',
|
2022-09-07 20:10:29 +00:00
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
CROSS_REMOTE: true,
|
2022-08-20 22:10:07 +00:00
|
|
|
},
|
2022-09-07 20:18:38 +00:00
|
|
|
depends_on: ['Wait for Docker'],
|
2022-09-07 20:10:29 +00:00
|
|
|
}
|
|
|
|
for arch in archs
|
2022-08-11 07:31:55 +00:00
|
|
|
];
|
|
|
|
|
2022-08-10 22:46:48 +00:00
|
|
|
{
|
2022-08-11 07:31:55 +00:00
|
|
|
kind: 'pipeline',
|
2022-12-02 21:20:24 +00:00
|
|
|
type: 'vm',
|
2022-08-11 07:31:55 +00:00
|
|
|
name: 'default',
|
2022-12-02 21:23:44 +00:00
|
|
|
pool: {
|
2022-12-02 21:24:20 +00:00
|
|
|
use: 'drone-ci-pool',
|
|
|
|
},
|
2022-08-11 07:31:55 +00:00
|
|
|
platform: {
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps:
|
2022-08-11 21:11:55 +00:00
|
|
|
[
|
|
|
|
{
|
2022-12-03 09:58:24 +00:00
|
|
|
name: 'Hello World!',
|
|
|
|
image: 'bash:latest',
|
2022-08-11 21:11:55 +00:00
|
|
|
commands: [
|
2022-12-03 09:58:24 +00:00
|
|
|
'Hello from Pipeline VM',
|
2022-08-11 21:11:55 +00:00
|
|
|
],
|
|
|
|
},
|
2022-09-07 20:34:36 +00:00
|
|
|
{
|
2022-12-03 09:58:24 +00:00
|
|
|
name: 'Hello World!',
|
|
|
|
image: 'img.kie.rs/jjkiers/rust-dind-cross:1.62-slim',
|
|
|
|
commands: [
|
|
|
|
'cargo run',
|
|
|
|
],
|
2022-08-20 21:23:48 +00:00
|
|
|
},
|
|
|
|
],
|
2022-08-11 21:30:14 +00:00
|
|
|
|
|
|
|
image_pull_secrets: ['docker_private_repo'],
|
2022-08-11 07:31:55 +00:00
|
|
|
}
|