CI: Attempt to set ENV not for Windows #72
Workflow file for this run
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
name: test | ||
on: [push, pull_request] | ||
jobs: | ||
ruby-versions: | ||
uses: ruby/actions/.github/workflows/ruby_versions.yml@master | ||
with: | ||
engine: cruby-jruby | ||
min_version: 2.5 | ||
test: | ||
needs: ruby-versions | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} | ||
os: [ ubuntu-latest, macos-latest, windows-latest ] | ||
include: | ||
- { os: windows-latest, ruby: ucrt } | ||
- { os: windows-latest, ruby: mingw } | ||
- { os: windows-latest, ruby: mswin } | ||
- { os: macos-13, ruby: 2.5 } | ||
exclude: | ||
- { os: macos-latest, ruby: 2.5 } | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Ruby | ||
uses: ruby/setup-ruby-pkgs@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
apt-get: "haveged libyaml-dev" | ||
brew: libyaml | ||
vcpkg: libyaml | ||
- name: Set JRuby ENV vars | ||
run: | | ||
echo "export JRUBY_OPTS=\"-J-Xmx1g -J--add-opens java.base/sun.nio.ch=ALL-UNNAMED -J--add-opens java.base/java.io=ALL-UNNAMED\"" >> $GITHUB_ENV | ||
if: ${{ matrix.os != "windows-latest" } | ||
Check failure on line 39 in .github/workflows/test.yml GitHub Actions / testInvalid workflow file
|
||
- name: Install dependencies | ||
run: bundle install --jobs 1 | ||
- name: Run test | ||
run: rake | ||
- name: Install gem | ||
run: rake install |