This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/tests/plan/platform/config_platform_linux_arm64.cue
Vasek - Tom C 01414f80c9
Add tests on plan platform configuration
Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
2021-12-23 15:47:11 +01:00

33 lines
460 B
CUE

package main
import (
"alpha.dagger.io/europa/dagger/engine"
)
engine.#Plan & {
platform: "linux/arm64"
actions: {
image: engine.#Pull & {
source: "alpine:3.15.0"
}
writeArch: engine.#Exec & {
input: image.output
always: true
args: [
"sh", "-c", #"""
echo -n $(uname -m) >> /arch.txt
"""#,
]
}
verify: engine.#ReadFile & {
input: writeArch.output
path: "/arch.txt"
} & {
contents: "aarch64"
}
}
}