Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Aug 6, 2021
1 parent 058962d commit 721a816
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 23 deletions.
2 changes: 1 addition & 1 deletion client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {
).onEach {
implementation(it) {
version {
strictly("[1.3,1.5)")
strictly("[1.3,1.6)")
prefer("1.3.72")
}
}
Expand Down
2 changes: 1 addition & 1 deletion explore/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
).onEach {
implementation(it) {
version {
strictly("[1.3,1.5)")
strictly("[1.3,1.6)")
prefer("1.3.72")
}
}
Expand Down
2 changes: 1 addition & 1 deletion integration-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dependencies {
).onEach {
implementation(it) {
version {
strictly("[1.3,1.5)")
strictly("[1.3,1.6)")
prefer("1.3.72")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,7 @@ class DockerDistributionIntegrationSpec extends Specification {
alpineDescriptor.content.Descriptor.mediaType == "application/vnd.docker.distribution.manifest.list.v2+json"
alpineDescriptor.content.Descriptor.digest =~ "sha256:[a-f0-9]{64}"
alpineDescriptor.content.Descriptor.size =~ "\\d{3,4}"
alpineDescriptor.content.Platforms == [
[architecture: "amd64", os: "linux"],
[architecture: "arm", os: "linux", variant: "v6"],
[architecture: "arm", os: "linux", variant: "v7"],
[architecture: "arm64", os: "linux", variant: "v8"],
[architecture: "386", os: "linux"],
[architecture: "ppc64le", os: "linux"],
[architecture: "s390x", os: "linux"],

]
alpineDescriptor.content.Platforms.find { it.architecture == "amd64" && it.os == "linux" }
}

@Requires({ LocalDocker.dockerVersion >= DockerVersion.parseDockerVersion("17.06") })
Expand All @@ -47,15 +38,6 @@ class DockerDistributionIntegrationSpec extends Specification {
debianDescriptor.content.Descriptor.mediaType == "application/vnd.docker.distribution.manifest.list.v2+json"
debianDescriptor.content.Descriptor.digest =~ "sha256:[a-f0-9]{64}"
debianDescriptor.content.Descriptor.size =~ "\\d{3,4}"
debianDescriptor.content.Platforms == [
[architecture: "amd64", os: "linux"],
[architecture: "arm", os: "linux", variant: "v5"],
[architecture: "arm", os: "linux", variant: "v7"],
[architecture: "arm64", os: "linux", variant: "v8"],
[architecture: "386", os: "linux"],
[architecture: "mips64le", os: "linux"],
[architecture: "ppc64le", os: "linux"],
[architecture: "s390x", os: "linux"]
]
debianDescriptor.content.Platforms.find { it.architecture == "amd64" && it.os == "linux" }
}
}

0 comments on commit 721a816

Please sign in to comment.