Skip to content
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

Add K8-Agent to 'e.platform.releng' to build linux.x86_64 swt-natives #261

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions instances/eclipse.platform.releng/config.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,39 @@ local permissionsTemplates = import '../../templates/permissions.libsonnet';
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=562806#c15
permissionsTemplates.projectPermissions("akurtakov@gmail.com", ["Agent/Connect", "Agent/Disconnect"])
},
clouds+: {
kubernetes+: {
local currentCloud = self,
templates+: {
"jipp-swt-natives-linux.x84_64": currentCloud.templates["centos-8"] {
labels: ["swt.natives-gtk.linux.x86_64"],
docker+: {
repository: "eclipse"
image: "platformreleng-centos-swt-build"
tag: "8"
}
kubernetes+: {
resources+: {
cpu: {
limit: "2000m",
request: "1000m",
},
memory: {
limit: "4096Mi",
request: "512Mi",
},
},
volumes+: {
name: "tools"
mounts+: {
mountPath: "/opt/tools"
},
},
Comment on lines +44 to +49
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure if this is necessary?

},
},
},
},
},
maven+: {
local superSettings = super.files["settings.xml"],
files+: {
Expand Down