From 1d56c0a7795ef87e34bd06c93a6525f3068aa536 Mon Sep 17 00:00:00 2001 From: elijah Date: Mon, 29 Aug 2016 21:13:42 -0700 Subject: move platform ci tests to tests/platform-ci --- tests/platform-ci/setup.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 tests/platform-ci/setup.sh (limited to 'tests/platform-ci/setup.sh') diff --git a/tests/platform-ci/setup.sh b/tests/platform-ci/setup.sh new file mode 100755 index 00000000..69a348b8 --- /dev/null +++ b/tests/platform-ci/setup.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +which bundle || apt install bundle +bundle install --binstubs --path=vendor --with=test \ No newline at end of file -- cgit v1.2.3 From c4afb0b63fdfaef6a7d67917f5b93e353902d36d Mon Sep 17 00:00:00 2001 From: elijah Date: Tue, 30 Aug 2016 15:31:23 -0700 Subject: fix paths for gitlab ci --- tests/platform-ci/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/platform-ci/setup.sh') diff --git a/tests/platform-ci/setup.sh b/tests/platform-ci/setup.sh index 69a348b8..e676ca37 100755 --- a/tests/platform-ci/setup.sh +++ b/tests/platform-ci/setup.sh @@ -1,4 +1,4 @@ #!/bin/sh which bundle || apt install bundle -bundle install --binstubs --path=vendor --with=test \ No newline at end of file +bundle install --binstubs --path=vendor --with=test --jobs $(nproc) \ No newline at end of file -- cgit v1.2.3 From 3728f820ca684798a5579fc445733ef531351bb7 Mon Sep 17 00:00:00 2001 From: varac Date: Sat, 15 Oct 2016 22:02:11 +0200 Subject: Use caching in setup.sh --- tests/platform-ci/setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/platform-ci/setup.sh') diff --git a/tests/platform-ci/setup.sh b/tests/platform-ci/setup.sh index e676ca37..39ef3130 100755 --- a/tests/platform-ci/setup.sh +++ b/tests/platform-ci/setup.sh @@ -1,4 +1,4 @@ #!/bin/sh -which bundle || apt install bundle -bundle install --binstubs --path=vendor --with=test --jobs $(nproc) \ No newline at end of file +which bundle || /usr/bin/apt install bundle +/usr/local/bin/bundle install --binstubs --path=/var/cache/gitlab-runner/ --with=test --jobs "$(nproc)" -- cgit v1.2.3