-
Notifications
You must be signed in to change notification settings - Fork 607
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
Alternative installation method? #1630
Comments
tar.gz files are already produced as part of the releases? |
@tomncooper Isn't it just the source code that is provided as part of the tar.gz and zip files? Or am I reading this wrong? I am looking for a tar.gz that contains everything I would need to run cruise-control. |
It seems like circleci is used as CI tool in this project. Could the following blog post be used as a starting point for my wish? I'll be happy to contribute, but I think a project team member with elevated permissions is required to test/verify.... |
I have never used gradle before, but I tried to hack something that seems to create the distribution(s) I am looking for: erikgb@247ff70. Running There are some "broken" classpath-entries (ref. I have verified that I can unpack this archive (somewhere else), and start cruise-control with the normal I have neither used circleci before, but I could try to prepare a PR for building and attaching these distributions to the release build. But I will not be able to test and verify this - since it is only part of the release builds. WDYT @efeg? |
For the record, this is what happens if I try to follow the documented installation:
The last step fails with the following error:
Regarding allprojects {
buildscript {
repositories.clear()
repositories {
maven { url "<our company Maven proxy URL>" }
}
}
repositories.clear()
repositories {
maven { url "<our company Maven proxy URL>" }
}
}
settingsEvaluated { settings ->
settings.buildscript {
repositories.clear()
repositories {
maven { url "<our company Maven proxy URL>" }
}
}
settings.pluginManagement {
repositories.clear()
repositories {
maven { url "<our company Maven proxy URL>" }
}
}
} If you have any suggestions or workarounds, please let me know! |
Can resolve it with dependencyResolutionManagement as described in https://stackoverflow.com/a/76337036/6318705 , in a word, just add below into
|
Any plans to provide a |
any updates? I've been struggling for more than a week to get this built in an offilne environment, but I keep getting errors and errors and I'm advancing like turtle... 🐢 |
I am trying to build a container image for cruise-control based on a multi-stage Dockerfile build. Our CI-server (trying to build the image) does not have direct access to the Internet, but has to go through a corporate proxy (Artifactory). I have been trying to use the offical installation doc, but I seem to be hitting a missing feature in Gradle: gradle/gradle#1038 - as I am trying to override the (non-accessible) repositories from an init script.
Any tips? Have you ever considered providing a tar.gz assembly as part of your releases? It would have made my task of building a container image a lot easier. 😉
The text was updated successfully, but these errors were encountered: