Signed-off-by: Jacob Kiers <jacob@jacobkiers.net>
This commit is contained in:
parent
49afae308a
commit
110a0c27ed
@ -1,29 +1,41 @@
|
|||||||
local archs = [
|
local archs = [
|
||||||
"aarch64-unknown-linux-gnu",
|
'aarch64-unknown-linux-gnu',
|
||||||
"aarch64-unknown-linux-musl",
|
'aarch64-unknown-linux-musl',
|
||||||
"x86_64-pc-windows-gnu",
|
'x86_64-pc-windows-gnu',
|
||||||
"x86_64-unknown-linux-gnu",
|
'x86_64-unknown-linux-gnu',
|
||||||
"x86_64-unknown-linux-musl"
|
'x86_64-unknown-linux-musl',
|
||||||
];
|
];
|
||||||
|
|
||||||
local getStepName(arch) = "check " + arch;
|
local getStepName(arch) = 'check ' + arch;
|
||||||
|
|
||||||
local buildForArch(arch) = {
|
local buildForArch(arch) = {
|
||||||
"name": getStepName(arch),
|
name: getStepName(arch),
|
||||||
"image": "rust:1.62",
|
image: 'rust:1.62',
|
||||||
"commands": [
|
commands: [
|
||||||
"echo Hello World from Jsonnet on " + arch + "!",
|
'echo Hello World from Jsonnet on ' + arch + '!',
|
||||||
"cargo check",
|
'cargo check',
|
||||||
]
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
local check_steps() = [
|
||||||
|
buildForArch(a)
|
||||||
|
for a in archs
|
||||||
|
];
|
||||||
|
|
||||||
{
|
{
|
||||||
"kind": "pipeline",
|
kind: 'pipeline',
|
||||||
"type": "docker",
|
type: 'docker',
|
||||||
"name": "default",
|
name: 'default',
|
||||||
"platform": {
|
platform: {
|
||||||
"arch": "amd64"
|
arch: 'amd64',
|
||||||
},
|
},
|
||||||
"steps": [
|
steps:
|
||||||
[buildForArch(a) for a in archs]
|
check_steps() + [{
|
||||||
]
|
name: 'build',
|
||||||
|
image: 'rust:1.62',
|
||||||
|
commands: [
|
||||||
|
'ls -lah target/',
|
||||||
|
],
|
||||||
|
depends_on: [getStepName(a) for a in archs],
|
||||||
|
}],
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user