Skip to content

Commit

Permalink
ci: add freebsd coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Apr 10, 2024
1 parent 36f079e commit b302238
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,22 @@ jobs:
- run: bundle install
- run: bundle exec rake test:unit
- run: bundle exec rake test:examples

freebsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: examples/ports/archives
key: examples-${{ hashFiles('examples/Rakefile') }}
- uses: vmactions/freebsd-vm@v1
with:
usesh: true
copyback: false
prepare: pkg install -y ruby devel/ruby-gems pkgconf git cmake textproc/libyaml
run: |
gem install bundler
bundle install
bundle exec rake test:unit
bundle exec rake test:examples

0 comments on commit b302238

Please sign in to comment.