changed creating folders for binaries
test-org/runner-rs/pipeline/pr-rc There was a failure building this commit Details

pull/20/head
yuobrezkov 2025-01-13 16:30:06 +03:00
parent 497dcbaeb6
commit f6c952f208
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -12,11 +12,11 @@ pipeline {
def targetDirAmd = "${env.WORKSPACE}/${env.CHANGE_BRANCH}/x86/"
def targetDirRisc = "${env.WORKSPACE}/${env.CHANGE_BRANCH}/riscv/"
sh "mkdir -p ${targetDir}"
sh "mkdir -p ${targetDirAmd}"
sh "mkdir -p ${targetDirRisc}"
sh """
docker build --network=host --no-cache -t e-monitor .
docker run --name e-monitor --dns 8.8.8.8 --network=host e-monitor:latest
"""