Skip to content

Commit

Permalink
Fixing release process
Browse files Browse the repository at this point in the history
  • Loading branch information
tesonep committed Aug 11, 2023
1 parent f733be4 commit 8ba7eb5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ def runBuildFromSources(platformName, configuration, headless = true){
//We take the source code from Linux version
//It is extracted and will create the pharo-vm subdirectory
unstash name: "packages-Linux-x86_64-${configuration}"
shell "unzip -d . build/build/packages/PharoVM-*-Linux-x86_64-c-src.zip"
shell "ls"
def expandedCSourceFileName = sh(returnStdout: true, script: "ls build/build/packages/PharoVM-*-${archiveName}-c-src.zip").trim()
shell "unzip -d . ${expandedCSourceFileName}"
shell "mv pharo-vm repository"
}

Expand Down

0 comments on commit 8ba7eb5

Please sign in to comment.