-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SWT SessionManagerDBus: Failed to connect to org.gnome.SessionManager:
Failed to execute child process “dbus-launch” https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/issues/5582 - set environment variables to fix errors/warnings related to dbus, MESA and glx
- Loading branch information
Showing
5 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
jenkins: | ||
globalNodeProperties: | ||
- envVars: | ||
env: | ||
- key: "LIBGL_ALWAYS_SOFTWARE" | ||
value: "1" | ||
- key: "NO_AT_BRIDGE" | ||
value: "1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
document.title = "Eclipse OCL - " + document.title; | ||
document.addEventListener('DOMContentLoaded', function() { | ||
let header = document.querySelector('.page-header__brand'); | ||
if (header) { | ||
let newLink = document.createElement('a'); | ||
newLink.href = 'https://github.com/eclipse-cbi/jiro/blob/master/instances/modeling.mdt.ocl/target/config.json'; | ||
newLink.textContent = 'JCasC Source'; | ||
newLink.style = 'color: white; border-left: 1px solid white; padding-left: 1em; font-size: 1.1em; position: relative; top: 0.2em; left: -1.6em;'; | ||
newLink.target = '_blank'; | ||
newLink.title = 'JIRO JCasC Configuration as Code'; | ||
header.appendChild(newLink); | ||
} else { | ||
console.log('Element with class "header" not found.'); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters