blob: 7746a6d35c73413d78c1a92f25862b0f571911b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
test_program="${RTDIR}/splitfits"
test_program_version="$(git describe --always --tags --long)"
test_data="${RTDIR}/data"
test_data_remote=https://nx.astroconda.org/repository
test_data_remote_auth=${test_data_remote_auth:-}
test_data_upload="generic/spb-splitfits"
if [[ $CIRCLECI == "true" ]]; then
test_data_upload="${test_data_upload}/ci/${CIRCLE_BRANCH}_${CIRCLE_JOB}/${CIRCLE_BUILD_NUM}/${test_program_version}"
else
test_data_upload="${test_data_upload}/user/${test_program_version}"
fi
|