Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
Eclipse Signalling Engineering Toolbox
Browser
Merge requests
!26
Automatically extract CEF resources
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Automatically extract CEF resources
feature/auto-extract
into
main
Overview
2
Commits
3
Changes
24
Closed
Pascal Stücker
requested to merge
feature/auto-extract
into
main
2 years ago
Overview
2
Commits
3
Changes
24
Expand
set#6 (closed)
0
0
Merge request reports
Compare
main
version 2
5ba3e96d
2 years ago
version 1
4e921e0a
2 years ago
main (base)
and
latest version
latest version
930fb6a5
3 commits,
2 years ago
version 2
5ba3e96d
2 commits,
2 years ago
version 1
4e921e0a
1 commit,
2 years ago
24 files
+
475
−
32
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
24
Search (e.g. *.vue) (Ctrl+P)
ci/Jenkinsfile.cef
+
12
−
9
Options
@@ -14,16 +14,19 @@ pipeline {
stage('Build CEF') {
steps {
container('rust') {
dir('java-cef/org.eclipse.set.browser.cef
.feature/res/bin/cef
')
dir('java-cef/org.eclipse.set.browser.cef
/res
')
{
// Download CEF distribution
downloadCEF versionFile: '../../../../../CEF_VERSION.txt',
files: ['Resources'],
wildcards: [
'Release/*.dll',
'Release/*.bin'
]
sh 'rm -rf .gitkeep'
dir('cef')
{
// Download CEF distribution
downloadCEF versionFile: '../../../../CEF_VERSION.txt',
files: ['Resources'],
wildcards: [
'Release/*.dll',
'Release/*.bin'
]
}
sh 'find cef | cut -c 1- | tail -n +2 > CEF_FILES'
}
}
container('maven') {
Loading