Skip to content

Commit

Permalink
build_jenkinsfile.sh typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rovinski committed Feb 6, 2020
1 parent af1d4a0 commit 8cc5a02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Expand Up @@ -14,7 +14,7 @@ pipeline {
stage('nangate45_gcd') {
steps {
catchError {
sh label: '_gcd', script: '''
sh label: 'nangate45_gcd', script: '''
docker run -u $(id -u ${USER}):$(id -g ${USER}) openroad/flow bash -c "source setup_env.sh && cd flow && test/test_helper.sh gcd nangate45"'''
}
echo currentBuild.result
Expand All @@ -23,7 +23,7 @@ pipeline {
stage('nangate45_aes') {
steps {
catchError {
sh label: '_aes', script: '''
sh label: 'nangate45_aes', script: '''
docker run -u $(id -u ${USER}):$(id -g ${USER}) openroad/flow bash -c "source setup_env.sh && cd flow && test/test_helper.sh aes nangate45"'''
}
echo currentBuild.result
Expand All @@ -32,7 +32,7 @@ pipeline {
stage('nangate45_tinyRocket') {
steps {
catchError {
sh label: '_tinyRocket', script: '''
sh label: 'nangate45_tinyRocket', script: '''
docker run -u $(id -u ${USER}):$(id -g ${USER}) openroad/flow bash -c "source setup_env.sh && cd flow && test/test_helper.sh tinyRocket nangate45"'''
}
echo currentBuild.result
Expand Down
2 changes: 1 addition & 1 deletion jenkins/build_jenkinsfile.sh
Expand Up @@ -22,7 +22,7 @@ for platform in $platforms; do
stage('${platform}_${design}') {
steps {
catchError {
sh label: '${platfor}_${design}', script: '''
sh label: '${platform}_${design}', script: '''
docker run -u \$(id -u \${USER}):\$(id -g \${USER}) openroad/flow bash -c \"source setup_env.sh && cd flow && test/test_helper.sh ${design} ${platform}\"'''
}
echo currentBuild.result
Expand Down

0 comments on commit 8cc5a02

Please sign in to comment.