Skip to content

Commit

Permalink
ci: test loofah against this version of nokogiri
Browse files Browse the repository at this point in the history
See #2293
  • Loading branch information
flavorjones committed May 8, 2022
1 parent 1bbc022 commit 4c89f59
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -321,3 +321,24 @@ jobs:
- run: bundle install --local || bundle install
- run: bundle exec rake compile -- --${{matrix.sys}}-system-libraries
- run: bundle exec rake test:memcheck

downstream-loofah:
runs-on: ubuntu-latest
container:
image: ghcr.io/sparklemotion/nokogiri-test:mri-3.1
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/cache@v2
with:
path: ports
key: ports-ubuntu-${{hashFiles('dependencies.yml', 'patches/**/*.patch')}}
- run: bundle install --local || bundle install
- run: bundle exec rake compile -- --${{matrix.sys}}-system-libraries
- run: |
git clone --depth=1 https://github.com/flavorjones/loofah
cd loofah
echo "gem 'nokogiri', path: '..'" >> Gemfile
bundle install --local || bundle install
bundle exec rake test

0 comments on commit 4c89f59

Please sign in to comment.