-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update environment and create new groovy files (#39)
* switch env vars to new form and create groovy files * clean up groovy files
- Loading branch information
Mike Fulton
authored
Sep 21, 2023
1 parent
1a6f22a
commit c3854cb
Showing
4 changed files
with
57 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ tests/hw/hw | |
*.o | ||
install/ | ||
log/ | ||
log.STABLE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
node('linux') | ||
{ | ||
stage ('Poll') { | ||
// Poll from upstream: | ||
checkout([ | ||
$class: 'GitSCM',: 'GitSCM', | ||
branches: [[name: '*/4.4.1']], | ||
doGenerateSubmoduleConfigurations: false, | ||
extensions: [], | ||
userRemoteConfigs: [[url: 'https://git.savannah.gnu.org/git/make.git']]]) | ||
|
||
// Poll for local changes | ||
checkout([ | ||
$class: 'GitSCM', | ||
branches: [[name: '*/main']], | ||
doGenerateSubmoduleConfigurations: false, | ||
extensions: [], | ||
userRemoteConfigs: [[url: 'https://github.com/ZOSOpenTools/makeport.git']]]) | ||
} | ||
|
||
stage('Build') { | ||
build job: 'Port-Pipeline', parameters: [ | ||
string(name: 'PORT_GITHUB_REPO', value: 'https://github.com/ZOSOpenTools/makeport.git'), | ||
string(name: 'PORT_DESCRIPTION', value: 'GNU Make is a tool which controls the generation of executables and other non-source files of a program from program source files.'), | ||
string(name: 'BUILD_LINE', value: 'DEV')] | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
node('linux') | ||
{ | ||
stage ('Poll') { | ||
// Poll for local changes | ||
checkout([ | ||
$class: 'GitSCM', | ||
branches: [[name: '*/main']], | ||
doGenerateSubmoduleConfigurations: false, | ||
extensions: [], | ||
userRemoteConfigs: [[url: 'https://github.com/ZOSOpenTools/makeport.git']]]) | ||
} | ||
|
||
stage('Build') { | ||
build job: 'Port-Pipeline', parameters: [ | ||
string(name: 'PORT_GITHUB_REPO', value: 'https://github.com/ZOSOpenTools/makeport.git'), | ||
string(name: 'PORT_DESCRIPTION', value: 'GNU Make is a tool which controls the generation of executables and other non-source files of a program from program source files.'), | ||
string(name: 'BUILD_LINE', value: 'STABLE')] | ||
} | ||
} | ||
|