-
Notifications
You must be signed in to change notification settings - Fork 10
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
Showing
1 changed file
with
40 additions
and
45 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 |
---|---|---|
|
@@ -11,9 +11,19 @@ env: | |
JAVA_OPTS: -Djdk.io.File.enableADS=true | ||
|
||
jobs: | ||
ruleset: | ||
name: Ruleset | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: bazel run :buildifier.check | ||
- run: bazel test ... | ||
- if: failure() && runner.debug == '1' | ||
uses: mxschmitt/action-tmate@v3 | ||
|
||
examples-gem: | ||
name: Examples / Gem (WORKSPACE) | ||
runs-on: ${{ matrix.os }} | ||
name: examples/gem | ||
runs-on: ${{ matrix.os }}-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
|
@@ -25,60 +35,45 @@ jobs: | |
- jruby-9.4.5.0 | ||
- truffleruby-23.1.1 | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
- ubuntu | ||
- macos | ||
- windows | ||
mode: | ||
- bzlmod | ||
- workspace | ||
exclude: | ||
- os: windows-latest | ||
# RubyInstaller doesn't ship previews | ||
- os: windows | ||
ruby: 3.3.0-preview3 | ||
- os: windows-latest | ||
# TruffleRuby doesn't work on Windows. | ||
- os: windows | ||
ruby: truffleruby-23.1.1 | ||
# https://github.com/p0deje/rules_ruby/issues/23 | ||
- mode: bzlmod | ||
ruby: 3.0.6 | ||
- mode: bzlmod | ||
ruby: 3.1.4 | ||
- mode: bzlmod | ||
ruby: 3.2.2 | ||
- mode: bzlmod | ||
ruby: 3.3.0-preview3 | ||
- mode: bzlmod | ||
ruby: jruby-9.4.5.0 | ||
- mode: bzlmod | ||
ruby: 3.0.6 | ||
- mode: bzlmod | ||
ruby: truffleruby-23.1.1 | ||
defaults: | ||
run: | ||
working-directory: examples/gem | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: p0deje/[email protected] | ||
- run: echo 'RUBY_VERSION = "${{ matrix.ruby }}"' > ruby_version.bzl | ||
- run: bazel test //... | ||
- run: bazel run lib/gem:add-numbers 2 | ||
- run: bazel run lib/gem:print-version | ||
- if: failure() && runner.debug == '1' | ||
uses: mxschmitt/action-tmate@v3 | ||
|
||
# bzlmod is a job rather than a dimension on the matrix above, because it doesn't test different | ||
# interpreters, see https://github.com/p0deje/rules_ruby/issues/23 | ||
# (Also, it reduces our CI load by avoiding a new dimension on that matrix) | ||
bzlmod: | ||
name: Examples / Gem (bzlmod) | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
defaults: | ||
run: | ||
working-directory: examples/gem | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: p0deje/[email protected] | ||
with: | ||
bazelrc: common --enable_bzlmod | ||
- run: bazel test //... | ||
bazelrc: ${{ matrix.mode == 'bzlmod' && 'common --enable_bzlmod' }} | ||
- run: echo 'RUBY_VERSION = "${{ matrix.ruby }}"' > ruby_version.bzl | ||
- run: bazel test ... | ||
- run: bazel run lib/gem:add-numbers 2 | ||
- run: bazel run lib/gem:print-version | ||
- if: failure() && runner.debug == '1' | ||
uses: mxschmitt/action-tmate@v3 | ||
|
||
ruleset: | ||
name: Ruleset | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: bazel run :buildifier.check | ||
- run: bazel test ... | ||
- if: failure() && runner.debug == '1' | ||
uses: mxschmitt/action-tmate@v3 |