-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate DRAFT API CI for Ruby 3.3 and Ruby 3.4 so failing builds don…
…'t cancel other builds
- Loading branch information
Showing
3 changed files
with
34 additions
and
3 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
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,31 @@ | ||
name: DRAFT API on Ruby 3.3 | ||
|
||
on: [push,pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-24.04 | ||
timeout-minutes: 15 | ||
strategy: | ||
matrix: | ||
ruby: | ||
- '3.3' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Ruby ${{ matrix.ruby }} | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
- name: Install ZMQ and CZMQ | ||
run: | | ||
export PKG_CONFIG_PATH=$HOME/lib/pkgconfig # custom libs (for linking) | ||
env | ||
env ZMQ_VERSION=HEAD ci/install-libzmq | ||
env CZMQ_VERSION=HEAD ci/install-libczmq | ||
- name: Run the default task | ||
run: | | ||
export LD_LIBRARY_PATH=$HOME/lib # custom libs (for execution) | ||
env | ||
gem install bundler | ||
bundle install | ||
bundle exec rake |
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