|
# 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.
datafusion-site/Makefile
Lines 35 to 43 in c6e5c35
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.