Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Fix failing CI by pinning bundler version #1778

Merged
merged 2 commits into from
Apr 6, 2024
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
Loading