Skip to content

Commit

Permalink
ci: add coverage for freebsd
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Aug 3, 2021
1 parent 6e87b67 commit 891ef0f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -272,3 +272,23 @@ jobs:
bundler-cache: true
- run: bundle exec rake compile
- run: bundle exec rake test

bsd:
needs: ["basic"]
strategy:
fail-fast: false
matrix:
sys: ["enable", "disable"]
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: vmactions/freebsd-vm@v0.1.5
with:
usesh: true
prepare: pkg install -y ruby devel/ruby-gems pkgconf libxml2 libxslt
run: |
bundle install --local || bundle install
bundle exec rake compile -- --${{matrix.sys}}-system-libraries
bundle exec rake test

0 comments on commit 891ef0f

Please sign in to comment.