-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update preview builds for new test script
- Loading branch information
1 parent
6ddeb65
commit 3db9ce6
Showing
3 changed files
with
31 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -225,7 +225,7 @@ target "base" { | |
labels = { | ||
"maintainer" = "Posit Docker <[email protected]>" | ||
} | ||
output = ["type=image"] | ||
output = ["type=image", "type=docker"] | ||
} | ||
|
||
target "product-base-dev" { | ||
|
@@ -238,12 +238,6 @@ target "product-base-dev" { | |
"docker.io/rstudio/product-base-dev:${builds.os}-r${builds.r_primary}_${builds.r_alternate}-py${builds.py_primary}_${builds.py_alternate}", | ||
] | ||
|
||
# We output to an OCI so it can be pulled in for testing later on. | ||
output = [ | ||
"type=image", | ||
"type=oci,tar=false,dest=./.out/preview/product-base-dev-${builds.os}-r${replace(builds.r_primary, ".", "-")}_${replace(builds.r_alternate, ".", "-")}-py${replace(builds.py_primary, ".", "-")}_${replace(builds.py_alternate, ".", "-")}" | ||
] | ||
|
||
dockerfile = "Dockerfile.${builds.os}" | ||
context = "product/base" | ||
|
||
|
@@ -268,12 +262,6 @@ target "product-base-pro-dev" { | |
"docker.io/rstudio/product-base-pro-dev:${builds.os}-r${builds.r_primary}_${builds.r_alternate}-py${builds.py_primary}_${builds.py_alternate}", | ||
] | ||
|
||
# We output to an OCI so it can be pulled in for testing later on. | ||
output = [ | ||
"type=image", | ||
"type=oci,tar=false,dest=./.out/preview/product-base-pro-dev-${builds.os}-r${replace(builds.r_primary, ".", "-")}_${replace(builds.r_alternate, ".", "-")}-py${replace(builds.py_primary, ".", "-")}_${replace(builds.py_alternate, ".", "-")}" | ||
] | ||
|
||
dockerfile = "Dockerfile.${builds.os}" | ||
context = "product/pro" | ||
contexts = { | ||
|
@@ -300,12 +288,6 @@ target "package-manager-daily" { | |
name = "package-manager-daily-${builds.os}-${replace(PACKAGE_MANAGER_DAILY_VERSION, ".", "-")}" | ||
tags = get_tags(builds.os, "rstudio-package-manager-preview", PACKAGE_MANAGER_DAILY_VERSION, "daily") | ||
|
||
# We output to an OCI so it can be pulled in for testing later on. | ||
output = [ | ||
"type=image", | ||
"type=oci,tar=false,dest=./.out/preview/package-manager-daily-${builds.os}-${replace(PACKAGE_MANAGER_DAILY_VERSION, ".", "-")}" | ||
] | ||
|
||
dockerfile = "Dockerfile.${builds.os}" | ||
context = "package-manager" | ||
contexts = { | ||
|
@@ -330,12 +312,6 @@ target "connect-daily" { | |
name = "connect-daily-${builds.os}-${replace(tag_safe_version(CONNECT_DAILY_VERSION), ".", "-")}" | ||
tags = get_tags(builds.os, "rstudio-connect-preview", CONNECT_DAILY_VERSION, "daily") | ||
|
||
# We output to an OCI so it can be pulled in for testing later on. | ||
output = [ | ||
"type=image", | ||
"type=oci,tar=false,dest=./.out/preview/connect-daily-${builds.os}-${replace(tag_safe_version(CONNECT_DAILY_VERSION), ".", "-")}" | ||
] | ||
|
||
dockerfile = "Dockerfile.${builds.os}" | ||
context = "connect" | ||
contexts = { | ||
|
@@ -359,12 +335,6 @@ target "connect-content-init-daily" { | |
name = "connect-content-init-daily-${builds.os}-${replace(tag_safe_version(CONNECT_DAILY_VERSION), ".", "-")}" | ||
tags = get_tags(builds.os, "rstudio-connect-content-init-preview", CONNECT_DAILY_VERSION, "daily") | ||
|
||
# We output to an OCI so it can be pulled in for testing later on. | ||
output = [ | ||
"type=image", | ||
"type=oci,tar=false,dest=./.out/preview/connect-content-init-daily-${builds.os}-${replace(tag_safe_version(CONNECT_DAILY_VERSION), ".", "-")}" | ||
] | ||
|
||
dockerfile = "Dockerfile.${builds.os}" | ||
context = "connect-content-init" | ||
|
||
|
@@ -383,12 +353,6 @@ target "r-session-complete-daily" { | |
name = "r-session-complete-daily-${builds.os}-${replace(tag_safe_version(WORKBENCH_DAILY_VERSION), ".", "-")}" | ||
tags = get_tags(builds.os, "r-session-complete-preview", WORKBENCH_DAILY_VERSION, "daily") | ||
|
||
# We output to an OCI so it can be pulled in for testing later on. | ||
output = [ | ||
"type=image", | ||
"type=oci,tar=false,dest=./.out/preview/r-session-complete-daily-${builds.os}-${replace(tag_safe_version(WORKBENCH_DAILY_VERSION), ".", "-")}" | ||
] | ||
|
||
dockerfile = "Dockerfile.${builds.os}" | ||
context = "r-session-complete" | ||
contexts = { | ||
|
@@ -415,12 +379,6 @@ target "r-session-complete-preview" { | |
name = "r-session-complete-preview-${builds.os}-${replace(tag_safe_version(WORKBENCH_PREVIEW_VERSION), ".", "-")}" | ||
tags = get_tags(builds.os, "r-session-complete-preview", WORKBENCH_PREVIEW_VERSION, "preview") | ||
|
||
# We output to an OCI so it can be pulled in for testing later on. | ||
output = [ | ||
"type=image", | ||
"type=oci,tar=false,dest=./.out/preview/r-session-complete-preview-${builds.os}-${replace(tag_safe_version(WORKBENCH_PREVIEW_VERSION), ".", "-")}" | ||
] | ||
|
||
dockerfile = "Dockerfile.${builds.os}" | ||
context = "r-session-complete" | ||
contexts = { | ||
|
@@ -446,12 +404,6 @@ target "workbench-daily" { | |
name = "workbench-daily-${builds.os}-${replace(tag_safe_version(WORKBENCH_DAILY_VERSION), ".", "-")}" | ||
tags = get_tags(builds.os, "rstudio-workbench-preview", WORKBENCH_DAILY_VERSION, "daily") | ||
|
||
# We output to an OCI so it can be pulled in for testing later on. | ||
output = [ | ||
"type=image", | ||
"type=oci,tar=false,dest=./.out/preview/workbench-daily-${builds.os}-${replace(tag_safe_version(WORKBENCH_DAILY_VERSION), ".", "-")}" | ||
] | ||
|
||
dockerfile = "Dockerfile.${builds.os}" | ||
context = "workbench" | ||
contexts = { | ||
|
@@ -477,12 +429,6 @@ target "workbench-preview" { | |
name = "workbench-preview-${builds.os}-${replace(tag_safe_version(WORKBENCH_PREVIEW_VERSION), ".", "-")}" | ||
tags = get_tags(builds.os, "rstudio-workbench-preview", WORKBENCH_PREVIEW_VERSION, "preview") | ||
|
||
# We output to an OCI so it can be pulled in for testing later on. | ||
output = [ | ||
"type=image", | ||
"type=oci,tar=false,dest=./.out/preview/workbench-preview-${builds.os}-${replace(tag_safe_version(WORKBENCH_PREVIEW_VERSION), ".", "-")}" | ||
] | ||
|
||
dockerfile = "Dockerfile.${builds.os}" | ||
context = "workbench" | ||
contexts = { | ||
|