Skip to content

Unpin infra repo commit hash in Makefile #144

@Jefffrey

Description

@Jefffrey

datafusion-site/Makefile

Lines 35 to 43 in c6e5c35

# checks out the specific commit due to https://github.com/apache/infrastructure-actions/issues/218
checkout-commit: clone-repo
@cd $(REPO_NAME) && \
if [ "$$(git rev-parse HEAD)" = "$(COMMIT_HASH)" ]; then \
echo "Repository is already at commit $(COMMIT_HASH), skipping checkout."; \
else \
echo "Checking out commit $(COMMIT_HASH)..."; \
git fetch --depth 1 origin $(COMMIT_HASH) && git checkout $(COMMIT_HASH); \
fi

Infra repo is pinned due to an old issue which is now resolved; I also tried building the local docker image according to the pinned commit hash and failed with some URL issue. I assume the commit hash we're using is quite outdated, we should track the main branch of that repo now.

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions