-
Notifications
You must be signed in to change notification settings - Fork 4.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
Previous release no longer available on debian? #4947
Comments
Unfortunately this is currently the case - but I wouldn't call it "intended". ;) The files are all still there on GCS, however the Debian repo metadata doesn't know about them anymore, as it is regenerated locally once per release and only for the latest deb versions. I think we can fix this. I'll look at it after my vacation. |
Because of the issue [1] move away from the sources.list and apt-get and download directly the Bazel binaries from Google Storage. Pin to the current Bazel version 0.14.0 to activate caches per default. [1] bazelbuild/bazel#4947 Change-Id: I04443c0d0b6e66c89c6f68faaf93eaeb74b4a4d5
I upgraded bazel to 0.25.0, which broke things, but couldn't easily downgrade because the previous version isn't in the PPA:
Why do you remove the old versions? |
I'm working on fixing this right now. We will provide all older Bazel versions in our apt-get repository in addition to the latest one and probably also make it possible to install versions in parallel (e.g. Bazel 0.29.1 can be installed side-by-side as Comments on the latter idea are welcome, whether that would be useful for you. |
@meteorcloudy fixed this in 3162705. :) Our apt repository now contains all stable version released since 1.0.0 and will continue to do so in the future |
I'm trying to make a minor change to https://github.com/alexeagle/ngcontainer
which installs a pinned version of Bazel. Building this docker image now fails with:
E: Version '0.9.0' for 'bazel' was not found
The command '/bin/sh -c BAZEL_VERSION="0.9.0" && wget -q -O - https://bazel.build/bazel-release.pub.gpg | apt-key add - && echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" > /etc/apt/sources.list.d/bazel.list && apt-get update && apt-get install -y bazel=$BAZEL_VERSION && rm -rf /var/lib/apt/lists/*' returned a non-zero code: 100
Is it intended that older releases are no longer installable? This makes it hard to make reproducible builds.
The text was updated successfully, but these errors were encountered: