Skip to content

Commit dc1e4dd

Browse files
author
Isaac Hill
committed
dont need to specify diff folder for workspace as workspace already be different folder for each jenkins job
1 parent 7ead037 commit dc1e4dd

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Jenkinsfile_config_dir

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pipeline {
1919
DEBUG_MODE = "${DEBUG_MODE}"
2020
REPO_DIR = "C:\\Instrument\\Settings\\config\\common"
2121
UPSTREAM_BRANCH_CONFIG = "master"
22-
WORKSPACE = "${WORKSPACE}\\config_job\\"
2322
}
2423

2524
stages {
@@ -47,7 +46,7 @@ pipeline {
4746

4847
post {
4948
always {
50-
archiveArtifacts artifacts: "config_job/git_status/*.txt", caseSensitive: false
49+
archiveArtifacts artifacts: "git_status/*.txt", caseSensitive: false
5150
logParser([
5251
projectRulePath: 'parse_rules',
5352
parsingRulesPath: '',

Jenkinsfile_epics_dir

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pipeline {
1919
DEBUG_MODE = "${DEBUG_MODE}"
2020
REPO_DIR = "C:\\Instrument\\Apps\\EPICS\\"
2121
UPSTREAM_BRANCH_CONFIG = "epics"
22-
WORKSPACE = "${WORKSPACE}\\epics_job\\"
2322
}
2423

2524
stages {
@@ -47,7 +46,7 @@ pipeline {
4746

4847
post {
4948
always {
50-
archiveArtifacts artifacts: "epics_job/git_status/*.txt", caseSensitive: false
49+
archiveArtifacts artifacts: "/git_status/*.txt", caseSensitive: false
5150
logParser([
5251
projectRulePath: 'parse_rules',
5352
parsingRulesPath: '',

0 commit comments

Comments
 (0)