Skip to content

Commit

Permalink
Remove old master jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
rbberger committed May 4, 2020
1 parent cec133b commit 6b9138c
Showing 1 changed file with 1 addition and 44 deletions.
45 changes: 1 addition & 44 deletions pipelines/master/jobs.dsl
Original file line number Diff line number Diff line change
@@ -1,27 +1,6 @@
folder('lammps/master')

def disabled_scripts = ['serial', 'serial-el7', 'shlib-el7', 'openmpi-el7', 'shlib', 'openmpi', 'serial-clang', 'shlib-clang', 'openmpi-clang']

disabled_scripts.each { name ->
pipelineJob("lammps/master/${name}") {
triggers {
githubPush()
}

disabled()

concurrentBuild(false)

definition {
cps {
script(readFileFromWorkspace('pipelines/master/master.groovy'))
sandbox()
}
}
}
}

def scripts = ['build-docs', 'testing', 'testing-omp', 'regression', 'intel', 'kokkos-omp']
def scripts = ['build-docs', 'regression', 'intel']

scripts.each { name ->
pipelineJob("lammps/master/${name}") {
Expand All @@ -40,28 +19,6 @@ scripts.each { name ->
}
}

folder('lammps/master/cmake')

def cmake_scripts = ['cmake-serial', 'cmake-kokkos-omp', 'cmake-kokkos-cuda', 'cmake-testing', 'cmake-testing-omp', 'cmake-testing-gpu-opencl', 'cmake-testing-gpu-cuda', 'cmake-testing-kokkos-cuda', 'cmake-win32-serial', 'cmake-win64-serial']

cmake_scripts.each { name ->
pipelineJob("lammps/master/cmake/${name}") {
triggers {
githubPush()
}

concurrentBuild(false)
disabled()

definition {
cps {
script(readFileFromWorkspace('pipelines/master/master.groovy'))
sandbox()
}
}
}
}

pipelineJob("lammps/master/cmake/coverity-scan") {
triggers {
cron('@weekly')
Expand Down

0 comments on commit 6b9138c

Please sign in to comment.