drone-test/.drone.jsonnet

46 lines
807 B
Plaintext
Raw Normal View History

2022-08-10 23:10:39 +00:00
local archs = [
'aarch64-unknown-linux-gnu',
'aarch64-unknown-linux-musl',
'x86_64-pc-windows-gnu',
'x86_64-unknown-linux-gnu',
'x86_64-unknown-linux-musl',
2022-08-10 23:11:42 +00:00
];
2022-08-10 23:10:39 +00:00
local getStepName(arch) = 'check ' + arch;
2022-08-10 23:10:39 +00:00
2022-08-10 22:57:46 +00:00
local buildForArch(arch) = {
name: getStepName(arch),
image: 'rust:1.62',
commands: [
'echo Hello World from Jsonnet on ' + arch + '!',
2022-08-11 07:41:21 +00:00
'pwd',
2022-08-11 07:34:42 +00:00
'touch ' + arch + '.txt',
2022-08-11 07:41:44 +00:00
'ls -lah',
'cargo check',
],
2022-08-10 22:58:45 +00:00
};
local check_steps() = [
buildForArch(a)
for a in archs
];
2022-08-10 22:46:48 +00:00
{
kind: 'pipeline',
type: 'docker',
name: 'default',
platform: {
arch: 'amd64',
},
steps:
check_steps() + [{
name: 'build',
image: 'rust:1.62',
commands: [
2022-08-11 07:41:21 +00:00
'pwd',
'ls -lahR',
],
depends_on: [getStepName(a) for a in archs],
}],
}