// Obtain files from source control system.
if (utils.scm_checkout()) return

// Allow modification of the job configuration, affects all relevant
// build configs.
// Pass this object in the argument list to the`run()` function below
// to apply these settings to the job's execution.
jobconfig = new JobConfig()
jobconfig.credentials = [
        ['drizzlepac_codecov', 'CODECOV_TOKEN']
    ]
// jobconfig.post_test_summary = true

// Configure artifactory ingest
data_config = new DataConfig()
data_config.server_id = 'bytesalad'
data_config.root = 'tests_output'
data_config.match_prefix = '(.*)_result' // .json is appended automatically

bc = new BuildConfig()
bc.nodetype = 'linux'
bc.env_vars = ['TEST_BIGDATA=https://bytesalad.stsci.edu/artifactory']
bc.name = '3.7'
bc.conda_channels = ['http://ssb.stsci.edu/astroconda']
bc.conda_packages = ['python=3.7']
bc.build_cmds = ["pip install numpy astropy codecov pytest-cov",
		 "pip install --upgrade -e '.[test]'",
                 "pip freeze"]
bc.test_cmds = ["pytest --cov=./ --basetemp=tests_output --junitxml results.xml --bigdata",
                "codecov"]
bc.test_configs = [data_config]

bc1 = new BuildConfig()
bc1.nodetype = 'linux'
bc1.env_vars = ['TEST_BIGDATA=https://bytesalad.stsci.edu/artifactory']
bc1.name = '3.8'
bc1.conda_channels = ['http://ssb.stsci.edu/astroconda']
bc1.conda_packages = ['python=3.8']
bc1.build_cmds = ["pip install numpy astropy codecov pytest-cov",
		 "pip install --upgrade -e '.[test]'",
                 "pip freeze"]
bc1.test_cmds = ["pytest --cov=./ --basetemp=tests_output --junitxml results.xml --bigdata",
                "codecov"]
bc1.test_configs = [data_config]


bc2 = utils.copy(bc1)
bc2.name = '3.8-dev'
bc2.build_cmds[1] = "pip install -r requirements-dev.txt --upgrade -e '.[test]'"

bc3 = new BuildConfig()
bc3.nodetype = 'linux'
bc3.env_vars = ['TEST_BIGDATA=https://bytesalad.stsci.edu/artifactory']
bc3.name = '3.10-dev'
bc3.conda_channels = ['http://ssb.stsci.edu/astroconda']
bc3.conda_packages = ['python=3.10']
bc3.build_cmds = ["pip install numpy astropy codecov pytest-cov",
		 "pip install -r requirements-dev.txt --upgrade -e '.[test]'",
                 "pip freeze"]
bc3.test_cmds = ["pytest --cov=./ --basetemp=tests_output --junitxml results.xml --bigdata",
                "codecov"]
bc3.test_configs = [data_config]


// Iterate over configurations that define the (distributed) build matrix.
// Spawn a host (or workdir) for each combination and run in parallel.
// Also apply the job configuration defined in `jobconfig` above.
utils.run([bc, bc1, bc3, jobconfig])
