-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support sha512 content #543
Draft
sudo-bmitch
wants to merge
1
commit into
opencontainers:main
Choose a base branch
from
sudo-bmitch:pr-digest-on-tag-push
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -92,27 +92,33 @@ conformance-test: | |
|
||
conformance-binary: $(OUTPUT_DIRNAME)/conformance.test | ||
|
||
TEST_REGISTRY_CONTAINER ?= ghcr.io/project-zot/zot-minimal-linux-amd64:v2.0.0-rc6@sha256:bf95a94849cd9c6f596fb10e5a2d03b74267e7886d1ba0b3dab33337d9e46e5c | ||
# TODO: update image once changes are merged in zot | ||
# TEST_REGISTRY_CONTAINER ?= ghcr.io/project-zot/zot-minimal-linux-amd64:v2.1.0 | ||
TEST_REGISTRY_CONTAINER ?= ghcr.io/andaaron/zot-minimal-linux-amd64:v2.1.0-manifest-digest | ||
registry-ci: | ||
docker rm -f oci-conformance && \ | ||
mkdir -p $(OUTPUT_DIRNAME) && \ | ||
echo '{"distSpecVersion":"1.1.0-dev","storage":{"rootDirectory":"/tmp/zot","gc":false,"dedupe":false},"http":{"address":"0.0.0.0","port":"5000"},"log":{"level":"debug"}}' > $(shell pwd)/$(OUTPUT_DIRNAME)/zot-config.json | ||
docker run -d \ | ||
-v $(shell pwd)/$(OUTPUT_DIRNAME)/zot-config.json:/etc/zot/config.json \ | ||
--name=oci-conformance \ | ||
-p 5000:5000 \ | ||
$(TEST_REGISTRY_CONTAINER) && \ | ||
sleep 5 | ||
|
||
conformance-ci: | ||
export OCI_ROOT_URL="http://localhost:5000" && \ | ||
docker rm -f oci-conformance || true | ||
mkdir -p $(OUTPUT_DIRNAME) | ||
docker run -d --rm \ | ||
--name=oci-conformance \ | ||
-p 5000 \ | ||
$(TEST_REGISTRY_CONTAINER) | ||
sleep 5 | ||
|
||
conformance-ci: conformance-binary | ||
export OCI_ROOT_URL="http://localhost:$$(docker port oci-conformance 5000 | head -1 | cut -f2 -d:)" && \ | ||
export OCI_NAMESPACE="myorg/myrepo" && \ | ||
export OCI_TEST_PULL=1 && \ | ||
export OCI_TEST_PUSH=1 && \ | ||
export OCI_TEST_CONTENT_DISCOVERY=1 && \ | ||
export OCI_TEST_CONTENT_MANAGEMENT=1 && \ | ||
$(shell pwd)/$(OUTPUT_DIRNAME)/conformance.test | ||
|
||
conformance-clean: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See my other comment on this file, same applies here. |
||
docker stop oci-conformance || true | ||
[ ! -f $(OUTPUT_DIRNAME)/conformance.test ] || rm "$(OUTPUT_DIRNAME)/conformance.test" | ||
[ ! -f "junit.xml" ] || rm junit.xml | ||
[ ! -f "report.html" ] || rm report.html | ||
|
||
$(OUTPUT_DIRNAME)/conformance.test: | ||
cd conformance && \ | ||
CGO_ENABLED=0 go test -c -o $(shell pwd)/$(OUTPUT_DIRNAME)/conformance.test \ | ||
|
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having all commands joined by
&&
ensures make executes them in the same shell.In the new code on the right side they seem to be executed in separate shells since they are different rows in the make target. (I also don't see
.ONESHELL
being used). I don't think this is intended, even if it is unlikely someone would usemake -j
It may be worth it to double check the new behavior of the make target is correct.