-
Notifications
You must be signed in to change notification settings - Fork 315
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
pkg_source not respected and do_download() overwrite not seen #8561
Comments
I wanted to update this issue. This is running as part of a CI/CD process. I had to |
Any news? has the same issue in Docker container, locally works fine but when I'm tying to use linux_x64 Docker image got the same error |
@justincolangelo / @vkurniavka , would you be able to share the plan.sh file you are using so that I could attempt to reproduce this issue ? |
@atrniv this is my pkg_name=$package_name pkg_deps=( pkg_build_deps=( pkg_exports=( pkg_description="Project $pkg_branch branch commit $commit_hash for $origin" do_download() { do_verify() { do_prepare() {
} do_build() { do_install() {
} do_strip() { do_end() { |
@atrniv any updates? |
We are seeing issues downloading hab studio now. ‘’’ |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. We value your input and contribution. Please leave a comment if this issue still affects you. |
Command that is running:
hab pkg build .
Settingpkg_source
in a plan.sh file to either a git URL or a zipped filepkg_source="https://location/of/file.tar.bz2"
and havingdo_download()
overridden seems to not use thedo_download()
nor does it try to download the zipped file. The output is always:hab
command to generate a trace:Running the hab command with the RUST env vars didn't product a stacktrace. I think maybe because it is just a failure to download from a git remote.
hab
command or supervisor is running.My goal was to have the
hab pkg build .
command pull from a remote private repo (using either the username:token option in the URL or the SSH clone option. It doesn't seem to matter what I put into thedo_download()
method or thepkg_source
variable.The text was updated successfully, but these errors were encountered: