We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6625117 commit 081ae69Copy full SHA for 081ae69
.github/workflows/build.yml
@@ -117,6 +117,15 @@ jobs:
117
118
# Test
119
- run: echo "$PWD/jruby-head/bin" >> $GITHUB_PATH
120
+ if: "!startsWith(matrix.os, 'windows')"
121
+ - run: echo "$($pwd.Path)\jruby-head\bin" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf8 -Append
122
+ if: startsWith(matrix.os, 'windows')
123
+ - run: which ruby
124
125
+ - run: where.exe ruby
126
127
+ - run: echo $Env:Path
128
+
129
- run: ruby --version
130
- run: ruby -e 'raise unless RUBY_ENGINE == %{jruby}'
131
- run: gem --version
0 commit comments