Merge pull request #1449 from talentedmrjones/europa-port-universe-alpine
[WIP]: ported alpine to europa
This commit is contained in:
commit
3dab092924
@ -5,13 +5,11 @@ import (
|
||||
"universe.dagger.io/docker"
|
||||
)
|
||||
|
||||
// Default Alpine version
|
||||
let defaultVersion = "3.13.5@sha256:69e70a79f2d41ab5d637de98c1e0b055206ba40a8145e7bddb55ccc04e13cf8f"
|
||||
|
||||
// Build an Alpine Linux container image
|
||||
#Build: {
|
||||
// Alpine version to install
|
||||
version: string | *defaultVersion
|
||||
|
||||
// Alpine version to install.
|
||||
version: string | *"3.15.0@sha256:21a3deaa0d32a8057914f36584b5288d2e5ecc984380bc0118285c70fa8c9300"
|
||||
|
||||
// List of packages to install
|
||||
packages: [pkgName=string]: version: string | *""
|
||||
|
10
pkg/universe.dagger.io/alpine/test/alpine.bats
Normal file
10
pkg/universe.dagger.io/alpine/test/alpine.bats
Normal file
@ -0,0 +1,10 @@
|
||||
setup() {
|
||||
load '../../bats_helpers'
|
||||
|
||||
common_setup
|
||||
}
|
||||
|
||||
@test "alpine.#Build" {
|
||||
dagger up ./image-version.cue
|
||||
dagger up ./package-install.cue
|
||||
}
|
22
pkg/universe.dagger.io/alpine/test/image-version.cue
Normal file
22
pkg/universe.dagger.io/alpine/test/image-version.cue
Normal file
@ -0,0 +1,22 @@
|
||||
package test
|
||||
|
||||
import (
|
||||
"dagger.io/dagger"
|
||||
"dagger.io/dagger/engine"
|
||||
"universe.dagger.io/alpine"
|
||||
)
|
||||
|
||||
dagger.#Plan & {
|
||||
actions: {
|
||||
build: alpine.#Build & {
|
||||
// install an old version on purpose
|
||||
version: "3.10.9"
|
||||
}
|
||||
|
||||
check: engine.#Readfile & {
|
||||
input: build.output.rootfs
|
||||
path: "/etc/alpine-release"
|
||||
contents: "3.10.9\n"
|
||||
}
|
||||
}
|
||||
}
|
31
pkg/universe.dagger.io/alpine/test/package-install.cue
Normal file
31
pkg/universe.dagger.io/alpine/test/package-install.cue
Normal file
@ -0,0 +1,31 @@
|
||||
package test
|
||||
|
||||
import (
|
||||
"dagger.io/dagger"
|
||||
"universe.dagger.io/alpine"
|
||||
"universe.dagger.io/docker"
|
||||
)
|
||||
|
||||
dagger.#Plan & {
|
||||
actions: {
|
||||
build: alpine.#Build & {
|
||||
packages: {
|
||||
jq: {}
|
||||
curl: {}
|
||||
}
|
||||
}
|
||||
|
||||
check: docker.#Run & {
|
||||
image: build.output
|
||||
script: """
|
||||
jq --version > /jq-version.txt
|
||||
curl --version > /curl-version.txt
|
||||
"""
|
||||
|
||||
export: files: {
|
||||
"/jq-version.txt": contents: =~"^jq"
|
||||
"/curl-version.txt": contents: =~"^curl"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
package alpine
|
||||
|
||||
import (
|
||||
"universe.dagger.io/docker"
|
||||
)
|
||||
|
||||
TestImageVersion: {
|
||||
build: #Build & {
|
||||
// install an old version on purpose
|
||||
version: "3.10.9"
|
||||
}
|
||||
|
||||
check: docker.#Run & {
|
||||
image: build.output
|
||||
output: files: "/etc/alpine-release": contents: "3.10.9"
|
||||
}
|
||||
}
|
||||
|
||||
TestPackageInstall: {
|
||||
build: #Build & {
|
||||
packages: {
|
||||
jq: {}
|
||||
curl: {}
|
||||
}
|
||||
}
|
||||
|
||||
check: docker.#Run & {
|
||||
script: """
|
||||
jq --version > /jq-version.txt
|
||||
curl --version > /curl-version.txt
|
||||
"""
|
||||
|
||||
output: files: {
|
||||
"/jq-version.txt": contents: "FIXME"
|
||||
"/curl-version.txt": contents: "FIXME"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user