-
Notifications
You must be signed in to change notification settings - Fork 2
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
v0.5 Pkg operations through proxy failed #3
Comments
Thanks for the report @yangguang760, we will try to fix this quickly for you. @tkelman we are building |
I don't know exactly how to set up proxy testing. @ViralBShah @mdpradeep what did we do for testing JuliaLang/julia#17783 ? |
We set up a proxy server (Charlie) and made the following config:
|
@mdpradeep Isn't that some private machine? Not sure if that helps here. You can use |
I backported a newer version of |
I would have to dig into the code and/or docs for libgit2, or ask the maintainers there. |
It seems that with the updated binary (the one fixing the |
@mortenpi I'm unable to reproduce on a clean VM. What version of Ubuntu are you using? What is the output of |
Oh, also, what is your |
I am running Ubuntu (Gnome) 16.04. I tried the binaries on a second machine, which should have roughly the same setup, and the binary is working fine there. I've updated the gist. Nothing interesting in |
I have installed julia from ppa in fresh ubuntu 16.10. Getting this error with any proxies:
|
I'm having a really hard time tracking this bug down. I took at stab at it again tonight, but I'm having difficulty figuring out where exactly the proxy configuration is getting picked up by To aid in testing, I've made some Dockerfiles that make debugging this kind of stuff much more reproducible. As an example, here's a "vanilla" build that exhibits the same behavior: FROM ubuntu:16.10
MAINTAINER Elliot Saba
RUN apt update
RUN DEBIAN_FRONTEND=noninteractive apt install -y vim gcc g++ git make build-essential libssl-dev gfortran bar time curl m4 cmake python
RUN git clone -b release-0.5 https://github.com/JuliaLang/julia.git /root/julia
WORKDIR /root/julia
RUN make -j3
ENV PATH=$PATH:/root/julia Saving that to a file called
Where
Build with |
@staticfloat
As mentioned in the issue below
JuliaLang/julia#18613
Plz update the libgit2 build in the PPA to include curl support.
The text was updated successfully, but these errors were encountered: