1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-08-25 20:09:25 +02:00

another fix

This commit is contained in:
Dima
2023-06-03 15:20:21 +03:00
parent 87cbb2c16c
commit ab10d28da1
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ class Bdd implements Serializable {
def options = config.bddOptions
def env = steps.env();
def srcDir = config.srcDir
def workspaceDir = FileUtils.getFilePath("$env.WORKSPACE/$WORKSPACE")
def workspaceDir = FileUtils.getFilePath("$env.WORKSPACE")
List<String> logosConfig = ["LOGOS_CONFIG=$config.logosConfig"]
steps.withEnv(logosConfig) {

View File

@@ -38,7 +38,7 @@ class SmokeTest implements Serializable {
def env = steps.env()
def srcDir = config.srcDir
def workspaceDir = FileUtils.getFilePath("$env.WORKSPACE/$WORKSPACE")
def workspaceDir = FileUtils.getFilePath("$env.WORKSPACE")
String vrunnerPath = VRunner.getVRunnerPath()
String command = "$vrunnerPath xunit --ibconnection \"/F./build/ib\""