-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
ci: Manually download promu in crossbuild stage #2828
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,7 +113,7 @@ build: check-git deps $(PROMU) | |
|
||
.PHONY: crossbuild | ||
crossbuild: ## Builds all binaries for all platforms. | ||
crossbuild: deps $(PROMU) | ||
crossbuild: | $(PROMU) | ||
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. Pipe makes sure that dependency doesn't run if the file already exists. 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. I think even without pipe that is happening. I guess it does not check mod file? 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. I have tested locally somehow, it still tries to execute bingo install task. Just to be sure. |
||
@echo ">> crossbuilding all binaries" | ||
$(PROMU) crossbuild -v | ||
|
||
|
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.
You don't want to source those things BEFORE running curl? 🤔