From 3bb5f65e46053381d854637778175dc778360905 Mon Sep 17 00:00:00 2001 From: James Foster Date: Tue, 3 Nov 2020 19:52:18 -0800 Subject: [PATCH] Move scripts into scripts directory. --- .gitignore | 4 ---- scripts/test.sh | 4 ++++ testAndBuild.sh => scripts/testAndBuild.sh | 0 test.sh | 3 --- 4 files changed, 4 insertions(+), 7 deletions(-) create mode 100755 scripts/test.sh rename testAndBuild.sh => scripts/testAndBuild.sh (100%) delete mode 100755 test.sh diff --git a/.gitignore b/.gitignore index bb02685c..589f2031 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,6 @@ # IDE - VSCode .vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json # misc *.zip diff --git a/scripts/test.sh b/scripts/test.sh new file mode 100755 index 00000000..ef17bd83 --- /dev/null +++ b/scripts/test.sh @@ -0,0 +1,4 @@ +#! /bin/sh +bundle config --local path vendor/bundle +bundle install +bundle exec arduino_ci_remote.rb --skip-examples-compilation diff --git a/testAndBuild.sh b/scripts/testAndBuild.sh similarity index 100% rename from testAndBuild.sh rename to scripts/testAndBuild.sh diff --git a/test.sh b/test.sh deleted file mode 100755 index 5dcda88f..00000000 --- a/test.sh +++ /dev/null @@ -1,3 +0,0 @@ -#! /bin/sh -bundle install --path vendor/bundle -bundle exec arduino_ci_remote.rb --skip-compilation