Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
tests:
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
timeout-minutes: 60
timeout-minutes: 30
strategy:
matrix:
script:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Submodules
run: |
git submodule update --init --recursive
sudo gem install bundler
sudo gem install bundler -v 2.4.22
bundle config set path 'vendor/bundle'
- name: Bundle Install
if: steps.cache-gems.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -94,6 +94,7 @@ jobs:
xcode_archive_path: ${{ env.TEST_RESULTS }}
docs:
runs-on: macos-13
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Setup Ruby
Expand All @@ -109,7 +110,7 @@ jobs:
- name: Submodules
run: |
git submodule update --init --recursive
sudo gem install bundler
sudo gem install bundler -v 2.4.22
bundle config path vendor/bundle
- name: Bundle Install
if: steps.cache-gems.outputs.cache-hit != 'true'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-automated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Submodules and Bundle Install
run: |
git submodule update --init --recursive
sudo gem install bundler
sudo gem install bundler -v 2.4.22
bundle config set path 'vendor/bundle'
bundle install
- run: npm ci
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Submodules
run: |
git submodule update --init --recursive
sudo gem install bundler
sudo gem install bundler -v 2.4.22
bundle config path vendor/bundle
- name: Bundle Install
if: steps.cache-gems.outputs.cache-hit != 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-manual-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Submodules
run: |
git submodule update --init --recursive
sudo gem install bundler
sudo gem install bundler -v 2.4.22
bundle config path vendor/bundle
- name: Bundle Install
if: steps.cache-gems.outputs.cache-hit != 'true'
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ For analyzing bugs, creating bug fixes and features we recommend to clone this r
Install all dependencies:
```
git submodule update --init --recursive
gem install bundler
gem install bundler -v 2.4.22
bundle install
```
Run the tests:
Expand Down