Skip to content
Snippets Groups Projects

Fix resource extraction issue

Merged Pascal Stücker requested to merge issue/file-extraction into main
All threads resolved!
27 files
+ 66
276
Compare changes
  • Side-by-side
  • Inline
Files
27
+ 1
5
@@ -14,7 +14,7 @@ pipeline {
@@ -14,7 +14,7 @@ pipeline {
stage('Build CEF') {
stage('Build CEF') {
steps {
steps {
container('rust') {
container('rust') {
dir('java-cef/org.eclipse.set.browser.cef/res/cef')
dir('java-cef/org.eclipse.set.browser.cef.win32/res/cef')
{
{
// Download CEF distribution
// Download CEF distribution
downloadCEF versionFile: '../../../../CEF_VERSION.txt',
downloadCEF versionFile: '../../../../CEF_VERSION.txt',
@@ -24,10 +24,6 @@ pipeline {
@@ -24,10 +24,6 @@ pipeline {
'Release/*.bin'
'Release/*.bin'
]
]
sh 'rm -rf ../.gitkeep'
sh 'rm -rf ../.gitkeep'
}
dir('java-cef/org.eclipse.set.browser.cef') {
sh 'find'
}
}
}
}
container('maven') {
container('maven') {
Loading