Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix mpich RPM installation #401

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// That PR should be landed with out deleting the PR branch.
// Then a second PR submitted to comment out the @Library line, and when it
// is landed, both PR branches can be deleted.
//@Library(value='pipeline-lib@my_branch_name') _
@Library(value='pipeline-lib@bmurrell/fix-mpich-loading') _

/* groovylint-disable-next-line CompileStatic */
job_status_internal = [:]
Expand Down Expand Up @@ -80,6 +80,16 @@ String test_branch(String target) {
'-' + target.replaceAll('/', '-')
}

def artifacts_selector() {
String pragma_val = cachedCommitPragma('libfabric-artifacts-selector', null)

if (pragma_val) {
return specific(pragma_val)
}

return lastSuccessful()
}

/* groovylint-disable-next-line CompileStatic */
pipeline {
agent { label 'lightweight' }
Expand Down Expand Up @@ -222,6 +232,7 @@ pipeline {
steps {
// Populate an artifact directory
copyArtifacts projectName: '/daos-stack/libfabric/master',
selector: artifacts_selector(),
filter: 'artifacts/el8/**',
target: 'artifact'
publishToRepository(
Expand Down Expand Up @@ -262,6 +273,7 @@ pipeline {
steps {
// Populate an artifact directory
copyArtifacts projectName: '/daos-stack/libfabric/master',
selector: artifacts_selector(),
filter: 'artifacts/ubuntu20.04/**',
target: 'artifact'
publishToRepository(
Expand Down
3 changes: 3 additions & 0 deletions vars/functionalPackages.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ String call(String distro, Integer client_ver, String next_version, String add_d
} else {
echo "ci/functional/required_packages.sh doesn't exist. " +
'Hopefully the daos-tests packages have the dependencies configured.'
sh(label: "Debug",
script: 'ls -l ci ci/functional || true; git branch || true')
}
echo "pkgs: " + pkgs

if (distro.startsWith('leap') ||
distro.startsWith('el') || distro.startsWith('centos') ||
Expand Down