Add tests on plan platform configuration
Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"alpha.dagger.io/europa/dagger/engine"
|
||||
)
|
||||
|
||||
engine.#Plan & {
|
||||
platform: "linux/unknown"
|
||||
|
||||
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: "s390x"
|
||||
}
|
||||
}
|
||||
}
|
32
tests/plan/platform/config_platform_linux_amd64.cue
Normal file
32
tests/plan/platform/config_platform_linux_amd64.cue
Normal file
@@ -0,0 +1,32 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"alpha.dagger.io/europa/dagger/engine"
|
||||
)
|
||||
|
||||
engine.#Plan & {
|
||||
platform: "linux/amd64"
|
||||
|
||||
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: "x86_64"
|
||||
}
|
||||
}
|
||||
}
|
32
tests/plan/platform/config_platform_linux_arm64.cue
Normal file
32
tests/plan/platform/config_platform_linux_arm64.cue
Normal file
@@ -0,0 +1,32 @@
|
||||
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"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user