Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ before_cache:
- find $HOME/.coursier/cache -name "ivydata-*.properties" -print -delete
- find $HOME/.sbt -name "*.lock" -print -delete
env:
global:
- PYTHON3_HOME=/opt/python/3.7.1
- PATH=$PYTHON3_HOME/bin\:$PATH
matrix:
# Setting this variable twice will cause the 'script' section to run twice with the respective env var invoked
- >-
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: gpu_cuda_image
testFormat: workflowsuccess
backends: [Papi]
ignore: true

files {
workflow: gpu_on_papi/gpu_cuda_image.wdl
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: gpu_on_papi_valid
testFormat: workflowsuccess
backends: [Papi]
ignore: true

files {
workflow: gpu_on_papi/gpu_on_papi.wdl
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"monitoring_script": "gs://cloud-cromwell-dev/some/rounding_script.sh"
"monitoring_script": "gs://cloud-cromwell-dev/some/rounding_script_int.sh"
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ files {
}

metadata {
"calls.monitoring_log.get_stats.jes.monitoringScript": "gs://cloud-cromwell-dev/some/rounding_script.sh"
"calls.monitoring_log.get_stats.jes.monitoringScript": "gs://cloud-cromwell-dev/some/rounding_script_int.sh"
"calls.monitoring_log.get_stats.monitoringLog": "gs://cloud-cromwell-dev-self-cleaning/cromwell_execution/ci/monitoring_log/<<UUID>>/call-get_stats/monitoring.log"
"outputs.monitoring_log.get_stats.stats.0": "CPU: 1"
"outputs.monitoring_log.get_stats.stats.1": "Total Memory: 4G"
"outputs.monitoring_log.get_stats.stats.2": "Total Disk space: 9.8G"
"outputs.monitoring_log.get_stats.stats.2": "Total Disk space: 9G"
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ files {
}

metadata {
"calls.monitoring_log.get_stats.jes.monitoringScript": "gs://cloud-cromwell-dev/some/rounding_script.sh"
"calls.monitoring_log.get_stats.jes.monitoringScript": "gs://cloud-cromwell-dev/some/rounding_script_int.sh"
"calls.monitoring_log.get_stats.monitoringLog": "gs://cloud-cromwell-dev-self-cleaning/cromwell_execution/ci/monitoring_log/<<UUID>>/call-get_stats/monitoring.log"
"outputs.monitoring_log.get_stats.stats.0": "CPU: 1"
"outputs.monitoring_log.get_stats.stats.1": "Total Memory: 2G"
"outputs.monitoring_log.get_stats.stats.2": "Total Disk space: 9.8G"
"outputs.monitoring_log.get_stats.stats.2": "Total Disk space: 9G"
}
4 changes: 2 additions & 2 deletions src/ci/bin/test.inc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ cromwell::private::create_centaur_variables() {

cromwell::private::create_conformance_variables() {
CROMWELL_BUILD_CWL_RUNNER_MODE="${CROMWELL_BUILD_BACKEND_TYPE}"
CROMWELL_BUILD_CWL_TOOL_VERSION="1.0.20190228155703"
CROMWELL_BUILD_CWL_TOOL_VERSION="3.0.20200724003302"
CROMWELL_BUILD_CWL_TEST_VERSION="1.0.20190228134645"
CROMWELL_BUILD_CWL_TEST_COMMIT="1f501e38ff692a408e16b246ac7d64d32f0822c2" # use known git hash to avoid changes
CROMWELL_BUILD_CWL_TEST_RUNNER="${CROMWELL_BUILD_ROOT_DIRECTORY}/centaurCwlRunner/src/bin/centaur-cwl-runner.bash"
Expand Down Expand Up @@ -700,7 +700,7 @@ cromwell::private::pip_install() {
pip_package="${1:?pip_install called without a package}"; shift

if [[ "${CROMWELL_BUILD_IS_CI}" == "true" ]]; then
sudo -H pip install "${pip_package}" "$@"
sudo -H "${PYTHON3_HOME}/bin/pip" install "${pip_package}" "$@"
elif [[ "${CROMWELL_BUILD_IS_VIRTUAL_ENV}" == "true" ]]; then
pip install "${pip_package}" "$@"
else
Expand Down
1 change: 1 addition & 0 deletions src/ci/resources/local_conformance_expected_failures.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
104
136
140
142
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
87
101
102
104
107
136
137
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
87
101
102
104
107
136
137
Expand Down