Skip to content

Commit

Permalink
Фикс
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanovEV committed Jan 18, 2024
1 parent 2351743 commit 3e2a0be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/ru/pulsar/jenkins/library/steps/GetExtensions.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ class GetExtensions implements Serializable {

private void buildExtension(Extension extension, String srcDir, String vrunnerPath, IStepExecutor steps) {

def compileExtCommand = "$vrunnerPath compileexttocfe --src ${srcDir} --out $EXTENSIONS_OUT_DIR/${extension.name}.cfe"
FilePath localPathToExtension = FileUtils.getFilePath(srcDir)
def compileExtCommand = "$vrunnerPath compileexttocfe --src ${localPathToExtension} --out $EXTENSIONS_OUT_DIR/${extension.name}.cfe"
List<String> logosConfig = ["LOGOS_CONFIG=$config.logosConfig"]
steps.withEnv(logosConfig) {
VRunner.exec(compileExtCommand)
Expand Down
2 changes: 1 addition & 1 deletion vars/pipeline1C.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void call() {
steps {
timeout(time: config.timeoutOptions.getBinaries, unit: TimeUnit.MINUTES) {
createDir('build/out/cfe')
// Соберем или загрузим cfe из исходников и положим их в папку build/cfe/
// Соберем или загрузим cfe из исходников и положим их в папку build/out/cfe
getExtensions config
}
}
Expand Down

0 comments on commit 3e2a0be

Please sign in to comment.