about summary refs log tree commit diff
path: root/src/ci
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2019-05-12 17:55:48 +0200
committerPietro Albini <pietro@pietroalbini.org>2019-05-13 10:07:55 +0200
commit7dfd8ceb4fe5fceb426ab6868312cc0890e28837 (patch)
treea5bf6a57ba179ef04fda000d4f281f2f1d883695 /src/ci
parent869ddd8d0019683c007956bae17fc07cd30f39f7 (diff)
downloadrust-7dfd8ceb4fe5fceb426ab6868312cc0890e28837.tar.gz
rust-7dfd8ceb4fe5fceb426ab6868312cc0890e28837.zip
ci: remove fanout from the azure pipelines config
Diffstat (limited to 'src/ci')
-rwxr-xr-xsrc/ci/run.sh36
1 files changed, 17 insertions, 19 deletions
diff --git a/src/ci/run.sh b/src/ci/run.sh
index 08ede122d65..a51c2da3cbd 100755
--- a/src/ci/run.sh
+++ b/src/ci/run.sh
@@ -90,25 +90,23 @@ if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
   rm -rf build
 fi
 
-if [ "$SKIP_PREP" != "1" ]; then
-  travis_fold start configure
-  travis_time_start
-  $SRC/configure $RUST_CONFIGURE_ARGS
-  travis_fold end configure
-  travis_time_finish
-
-  travis_fold start make-prepare
-  travis_time_start
-  retry make prepare
-  travis_fold end make-prepare
-  travis_time_finish
-
-  travis_fold start check-bootstrap
-  travis_time_start
-  make check-bootstrap
-  travis_fold end check-bootstrap
-  travis_time_finish
-fi
+travis_fold start configure
+travis_time_start
+$SRC/configure $RUST_CONFIGURE_ARGS
+travis_fold end configure
+travis_time_finish
+
+travis_fold start make-prepare
+travis_time_start
+retry make prepare
+travis_fold end make-prepare
+travis_time_finish
+
+travis_fold start check-bootstrap
+travis_time_start
+make check-bootstrap
+travis_fold end check-bootstrap
+travis_time_finish
 
 # Display the CPU and memory information. This helps us know why the CI timing
 # is fluctuating.