fix: bzlmod on bazel 6 #784
Workflow file for this run
This file contains hidden or 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
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - v*.*.* | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ruleset: | |
| name: Ruleset | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bazel-contrib/[email protected] | |
| with: | |
| bazelrc: common --announce_rc --color=yes | |
| repository-cache: true | |
| - run: bazel run :buildifier.check | |
| - run: bazel test ... | |
| - if: failure() && runner.debug == '1' | |
| uses: mxschmitt/action-tmate@v3 | |
| examples-gem: | |
| name: Examples / Gem | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: | |
| - 3.2.8 | |
| - 3.3.8 | |
| - 3.4.3 | |
| - 3.5.0-preview1 | |
| - jruby-10.0.0.0 | |
| - truffleruby-24.2.1 | |
| - system | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| mode: | |
| - bzlmod | |
| - WORKSPACE | |
| exclude: | |
| # Previews are not available via RubyInstaller. | |
| - os: windows-latest | |
| ruby: 3.5.0-preview1 | |
| # TruffleRuby doesn't work on Windows. | |
| - os: windows-latest | |
| ruby: truffleruby-24.2.1 | |
| defaults: | |
| run: | |
| working-directory: examples/gem | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bazel-contrib/[email protected] | |
| with: | |
| bazelrc: common --announce_rc --color=yes ${{ matrix.mode == 'WORKSPACE' && '--enable_workspace' || '' }} | |
| module-root: examples/gem | |
| # Workaround for long path issues: https://github.com/jruby/jruby/issues/3995. | |
| output-base: ${{ matrix.os == 'windows-latest' && 'D:/b' || '' }} | |
| repository-cache: true | |
| - run: echo ${{ matrix.ruby }} > .ruby-version | |
| - if: matrix.ruby == 'system' | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.2.8 | |
| - run: bazel build ... | |
| - run: bazel run lib/gem:add-numbers 2 | |
| - run: bazel run lib/gem:print-version | |
| - run: bazel run "@ruby" "--" -e "puts RUBY_VERSION" | |
| - run: bazel run "@ruby//:bundle" "--" lock | |
| - run: bazel run "@ruby//:gem" "--" info | |
| - run: bazel run "@bundle//bin:rake" "--" --version | |
| - run: bazel run "@bundle//bin:rspec" "--" --help | |
| - run: bazel test ... | |
| - if: failure() && runner.debug == '1' | |
| uses: mxschmitt/action-tmate@v3 | |
| examples-jekyll: | |
| name: Examples / Jekyll | |
| runs-on: ${{ matrix.os }}-latest | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu | |
| - macos | |
| defaults: | |
| run: | |
| working-directory: examples/jekyll | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bazel-contrib/[email protected] | |
| with: | |
| bazelrc: common --announce_rc --color=yes | |
| module-root: examples/jekyll | |
| repository-cache: true | |
| - run: bazel build ... | |
| - if: failure() && runner.debug == '1' | |
| uses: mxschmitt/action-tmate@v3 | |
| examples-native_ext: | |
| name: Examples / Native Ext | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: | |
| - 3.3.8 | |
| - jruby-10.0.0.0 | |
| use-system-ruby: | |
| - true | |
| - false | |
| defaults: | |
| run: | |
| working-directory: examples/native_ext | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bazel-contrib/[email protected] | |
| with: | |
| bazelrc: common --announce_rc --color=yes | |
| module-root: examples/native_ext | |
| repository-cache: true | |
| - if: matrix.use-system-ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - run: echo ${{ matrix.use-system-ruby && 'system' || matrix.ruby }} > .ruby-version | |
| - run: bazel build ... | |
| - if: failure() && runner.debug == '1' | |
| uses: mxschmitt/action-tmate@v3 | |
| release: | |
| name: Release | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| needs: | |
| - ruleset | |
| - examples-gem | |
| - examples-jekyll | |
| - examples-native_ext | |
| uses: bazel-contrib/.github/.github/workflows/release_ruleset.yaml@v7 | |
| with: | |
| mount_bazel_caches: false | |
| prerelease: false | |
| release_files: rules_ruby-*.tar.gz |