Skip to content

Commit

Permalink
Merge pull request #426 from bugsnag/next
Browse files Browse the repository at this point in the history
Sync CI changes to master
  • Loading branch information
imjoehaines authored Dec 14, 2020
2 parents 37eee61 + cf2e7e2 commit e2096f4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/maze-runner-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- uses: actions/checkout@v2

- name: Install libcurl4-openssl-dev
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- name: install Ruby
uses: actions/setup-ruby@v1
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/unstable-version-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
- uses: actions/checkout@v2

- name: Install libcurl4-openssl-dev
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- name: install Ruby
uses: actions/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'https://rubygems.org'

gem 'bugsnag-maze-runner', git: 'https://github.com/bugsnag/maze-runner', tag: 'v3.5.1'
gem 'bugsnag-maze-runner', git: 'https://github.com/bugsnag/maze-runner', tag: 'v3.6.0'
gem "os", "~> 1.0"
4 changes: 4 additions & 0 deletions features/support/env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,7 @@
at_exit do
FileUtils.rm_rf(VENDORED_LIB)
end

AfterConfiguration do |_config|
MazeRunner.config.enforce_bugsnag_integrity = false if MazeRunner.config.respond_to? :enforce_bugsnag_integrity=
end

0 comments on commit e2096f4

Please sign in to comment.