You've already forked jenkins-lib
forked from jenkins/jenkins-lib
Merge branch 'develop' into FromEDTTransform
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import ru.pulsar.jenkins.library.configuration.JobConfiguration
|
||||
import ru.pulsar.jenkins.library.utils.VRunner
|
||||
import ru.pulsar.jenkins.library.utils.VersionParser
|
||||
|
||||
def call(JobConfiguration jobConfiguration) {
|
||||
@@ -17,6 +18,7 @@ def call(JobConfiguration jobConfiguration) {
|
||||
variable: 'STORAGE_PATH'
|
||||
)
|
||||
]) {
|
||||
cmd "oscript_modules/bin/vrunner init-dev --storage --storage-name $STORAGE_PATH --storage-user $STORAGE_USR --storage-pwd $STORAGE_PSW $storageVersionParameter --ibconnection \"/F./build/ib\""
|
||||
String vrunnerPath = VRunner.getVRunnerPath();
|
||||
cmd "$vrunnerPath init-dev --storage --storage-name $STORAGE_PATH --storage-user $STORAGE_USR --storage-pwd $STORAGE_PSW $storageVersionParameter --ibconnection \"/F./build/ib\""
|
||||
}
|
||||
}
|
@@ -1,3 +1,10 @@
|
||||
import ru.pulsar.jenkins.library.utils.Logger
|
||||
|
||||
def call() {
|
||||
if (!fileExists("packagedef")) {
|
||||
return
|
||||
}
|
||||
|
||||
Logger.println("Установка локальных зависимостей OneScript")
|
||||
cmd("opm install -l")
|
||||
}
|
@@ -2,6 +2,7 @@ import hudson.FilePath
|
||||
import ru.pulsar.jenkins.library.configuration.JobConfiguration
|
||||
import ru.pulsar.jenkins.library.ioc.ContextRegistry
|
||||
import ru.pulsar.jenkins.library.utils.FileUtils
|
||||
import ru.pulsar.jenkins.library.utils.VRunner
|
||||
|
||||
def call(JobConfiguration config) {
|
||||
|
||||
@@ -27,7 +28,8 @@ def call(JobConfiguration config) {
|
||||
String outPath = pathToJUnitReport.getParent()
|
||||
createDir(outPath)
|
||||
|
||||
String command = 'oscript_modules/bin/vrunner syntax-check --ibconnection "/F./build/ib"'
|
||||
String vrunnerPath = VRunner.getVRunnerPath();
|
||||
String command = "$vrunnerPath syntax-check --ibconnection \"/F./build/ib\""
|
||||
|
||||
// Временно убрал передачу параметра.
|
||||
// См. https://github.com/vanessa-opensource/vanessa-runner/issues/361
|
||||
|
Reference in New Issue
Block a user