-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c73c1f8
commit 8b6961a
Showing
3 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
steps: | ||
- label: ":hammer: Specs" | ||
agents: | ||
m1: true | ||
commands: | ||
- echo "--- Initialize git" | ||
- git submodule update --init | ||
- ./.github/scripts/setup_test_repo.sh | ||
- echo "--- Bundler" | ||
- gem install bundler:1.17.3 | ||
- bundle config path vendor/bundle | ||
- bundle install --jobs 4 --retry 3 --without debugging documentation | ||
- echo "+++ Run Specs" | ||
- bundle exec rake spec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/sh | ||
cd spec/fixtures/spec-repos/test_repo | ||
rm -rf .git || true | ||
git init | ||
git remote add origin https://bitbucket.com/test/test_repo.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters