Update libxml2 from 2.10.4 to 2.12.6 #9
Workflow file for this run
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: downstream | |
concurrency: | |
group: "${{github.workflow}}-${{github.ref}}" | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 8 * * 1,3,5" # At 08:00 on Monday, Wednesday, and Friday # https://crontab.guru/#0_8_*_*_1,3,5 | |
push: | |
branches: | |
- main | |
- v*.*.x | |
tags: | |
- v*.*.* | |
pull_request: | |
types: [opened, synchronize] | |
branches: | |
- '*' | |
jobs: | |
downstream: | |
name: downstream-${{matrix.name}} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- url: https://github.com/flavorjones/loofah | |
name: loofah | |
command: "bundle exec rake test" | |
- url: https://github.com/rgrove/sanitize | |
name: sanitize | |
command: "bundle exec rake test" | |
- url: https://github.com/ebeigarts/signer | |
name: signer | |
command: "bundle exec rake spec" | |
- url: https://github.com/WinRb/Viewpoint | |
name: viewpoint | |
command: "bundle exec rspec spec" | |
- url: https://github.com/pythonicrubyist/creek | |
name: creek | |
command: "bundle exec rake spec" | |
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 | |
- run: | | |
git clone --depth=1 ${{matrix.url}} ${{matrix.name}} | |
cd ${{matrix.name}} | |
if grep nokogiri Gemfile ; then | |
sed -i 's/\(.*nokogiri.*\)/\1, path: ".."/' Gemfile | |
else | |
echo "gem 'nokogiri', path: '..'" >> Gemfile | |
fi | |
if egrep "add_development_dependency.*\bbundler\b" *gemspec ; then | |
sed -i 's/.*add_development_dependency.*\bbundler\b.*//' *gemspec | |
fi | |
bundle install --local || bundle install | |
${{matrix.command}} |