Commit 26012921 authored by Kelvin's avatar Kelvin
Browse files

clean up a little

parent 93fcc0eb
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
// vim: ft=groovy

def NUM_CORES = 8
def errors = []
def labels = ['centos', 'fedora', 'ubuntu', 'mac'] // labels for Jenkins node types we will build on
def nodes = [:] 

for (lbl in labels) {
    def label = lbl

for (label in labels) {
    nodes[label] = {
        stage(label) {
            isisNode(label) {
@@ -33,7 +29,7 @@ for (lbl in labels) {
                     ${condaPath}/bin/conda config --env --add channels conda-forge
                     ${condaPath}/bin/conda config --env --add channels usgs-astrogeology
                     
                     ${condaPath}/bin/conda create -n isis -c usgs-astrogeology isis=3.10
                     ${condaPath}/bin/conda create -n isis -c usgs-astrogeology isis

                     export ISISROOT=${condaPath}/envs/isis/
                     ${condaPath}/bin/conda run -n isis campt -HELP