Fix windows issues with nicetest #97
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
ci-data: | |
runs-on: ubuntu-latest | |
outputs: | |
result: ${{ steps.fetch.outputs.result }} | |
steps: | |
- id: fetch | |
uses: oxidize-rb/actions/fetch-ci-data@main | |
with: | |
stable-ruby-versions: | | |
exclude: [] | |
ci: | |
runs-on: ${{ matrix.os }} | |
needs: ci-data | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
ruby: ${{ fromJSON(needs.ci-data.outputs.result).stable-ruby-versions }} | |
include: | |
- os: windows-latest | |
ruby: mswin | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oxidize-rb/actions/setup-ruby-and-rust@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
cargo-cache: true | |
cache-version: v2 | |
- name: Run ruby tests | |
run: bundle exec rake compile && bundle exec ruby -rminitest/autorun -Itest test/oxi/test_test.rb | |
- name: Lint rust | |
run: cargo clippy && cargo fmt --check | |
- name: Test source gem | |
shell: bash | |
run: | | |
bundle exec rake build | |
gem install --verbose pkg/*.gem | |
if ruby -roxi/test -e "puts Oxi::Test.hello('world!')" | grep "Hello, world!"; then | |
echo "Success" | |
else | |
echo "Failure" | |
exit 1 | |
fi |