-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from Agoric/25-publish-use
publish 'use' images
- Loading branch information
Showing
13 changed files
with
138 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,4 +135,5 @@ dist | |
|
||
# build in CI | ||
Dockerfile | ||
docker-bake.json | ||
/upgrade-test-scripts |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// If you're new to Bake: | ||
// https://blog.kubesimplify.com/bake-your-container-images-with-bake | ||
|
||
// for https://github.com/docker/metadata-action?tab=readme-ov-file#bake-definition | ||
target "docker-metadata-action" {} | ||
|
||
// PROPOSALS variable is filled by docker-bake.json, which this config merges upon | ||
// https://docs.docker.com/build/bake/reference/#file-format | ||
|
||
group "default" { | ||
targets = [ | ||
"use", | ||
"test" | ||
] | ||
} | ||
|
||
target "use" { | ||
inherits = ["docker-metadata-action"] | ||
name = "use-${proposal}" | ||
matrix = { | ||
proposal = PROPOSALS | ||
} | ||
// TODO proposal *number* would be immutable | ||
tags = ["ghcr.io/agoric/agoric-3-proposals:use-${proposal}"] | ||
labels = { | ||
"org.opencontainers.image.title": "Use ${proposal}", | ||
"org.opencontainers.image.description": "Use agoric-3 synthetic chain after ${proposal} proposal", | ||
} | ||
target = "use-${proposal}" | ||
} | ||
|
||
target "test" { | ||
name = "test-${proposal}" | ||
matrix = { | ||
proposal = PROPOSALS | ||
} | ||
tags = ["ghcr.io/agoric/agoric-3-proposals:test-${proposal}"] | ||
labels = { | ||
"org.opencontainers.image.title": "Test ${proposal}", | ||
} | ||
target = "test-${proposal}" | ||
} |
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
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
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 was deleted.
Oops, something went wrong.