Skip to content
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

Temporarily ignore hashes in clnvm #479

Merged
merged 1 commit into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ docker-image: ${REPO_ROOT}/docker/gl-testing/Dockerfile
--build-arg DOCKER_USER=$(shell whoami) \
--build-arg UID=$(shell id -u) \
--build-arg GID=$(shell id -g) \
--build-arg GL_TESTING_IGNORE_HASH=1 \
-t gltesting \
-f docker/gl-testing/Dockerfile \
.
Expand Down
4 changes: 3 additions & 1 deletion docker/gl-testing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,15 @@ RUN chmod a+rwx -R $CARGO_HOME
# Download all versions so they can be copied to our dev-container
FROM python-builder as cln-downloader

ARG GL_TESTING_IGNORE_HASH=0

RUN mkdir -p /opt/cln/
ENV CLNVM_CACHE_DIR=/opt/cln

ADD libs/cln-version-manager /repo/libs/cln-version-manager
RUN cd /repo/libs/cln-version-manager; python -m pip install -e .

RUN python -m clnvm get-all
RUN GL_TESTING_IGNORE_HASH=${GL_TESTING_IGNORE_HASH} python -m clnvm get-all

# -------------------------------------
# STAGE: bitcoin-downloader
Expand Down
Loading