From 30783adef288e0c7eb6dd3f3690c1aafcf3deb84 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Thu, 19 Sep 2019 11:17:13 +0200 Subject: [PATCH] shuffle files such that ci_scripts/ contains all the ci scripts --- .circleci/config.yml | 6 +++--- ci_scripts/{run_all.sh => run-python.sh} | 0 ci/run.sh => ci_scripts/run-rust-test.sh | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename ci_scripts/{run_all.sh => run-python.sh} (100%) rename ci/run.sh => ci_scripts/run-rust-test.sh (100%) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4a464010f..654c87040 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,7 +25,7 @@ commands: - *restore-cache - run: name: Test (<< parameters.target >>) - command: TARGET=<< parameters.target >> ci/run.sh + command: TARGET=<< parameters.target >> ci_scripts/run-rust-test.sh no_output_timeout: 15m jobs: @@ -92,7 +92,7 @@ jobs: - run: cargo fetch - run: name: Test - command: TARGET=x86_64-apple-darwin ci/run.sh + command: TARGET=x86_64-apple-darwin ci_scripts/run-rust-test.sh test_x86_64-unknown-linux-gnu: executor: default @@ -125,7 +125,7 @@ jobs: - *restore-cache - run: name: build docs, run tests and build wheels - command: ci_scripts/run_all.sh + command: ci_scripts/run-python.sh - run: name: copying docs and wheels to workspace command: | diff --git a/ci_scripts/run_all.sh b/ci_scripts/run-python.sh similarity index 100% rename from ci_scripts/run_all.sh rename to ci_scripts/run-python.sh diff --git a/ci/run.sh b/ci_scripts/run-rust-test.sh similarity index 100% rename from ci/run.sh rename to ci_scripts/run-rust-test.sh