mini_portile2 2.8.7.rc1 → 2.8.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/downstream.yml +66 -0
- data/CHANGELOG.md +1 -1
- data/lib/mini_portile2/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70898a2aae18144f603247968314787f2bb4291ce43bab39e7d9f0236d1dcd16
|
4
|
+
data.tar.gz: be938e39466de9c5d731d261c7e2afa63a88e5ca20bdfd594b6f39761b250798
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55d44167607aca34fee6fa086246d7f71146e500d77a79f128af9399cd057404ee44d9fb8a349f89928c6f21139826e785d2da23bc4ea656c93047fa1990a20a
|
7
|
+
data.tar.gz: bd0c5d6b654deb5325d1f5329ef0e93b1a47cfde7225ab4f8730dfb419ab27604eb4713d1ae3659dcd4fdf1697e00acbad020c06347b7456041f0121ae40bb05
|
@@ -0,0 +1,66 @@
|
|
1
|
+
name: downstream
|
2
|
+
concurrency:
|
3
|
+
group: "${{github.workflow}}-${{github.ref}}"
|
4
|
+
cancel-in-progress: true
|
5
|
+
on:
|
6
|
+
workflow_dispatch:
|
7
|
+
schedule:
|
8
|
+
- cron: "0 7 * * 1,3,5" # At 07:00 on Monday, Wednesday, and Friday # https://crontab.guru/#0_7_*_*_1,3,5
|
9
|
+
push:
|
10
|
+
branches:
|
11
|
+
- main
|
12
|
+
- "v*.*.x"
|
13
|
+
tags:
|
14
|
+
- v*.*.*
|
15
|
+
pull_request:
|
16
|
+
types: [opened, synchronize]
|
17
|
+
branches:
|
18
|
+
- '*'
|
19
|
+
|
20
|
+
jobs:
|
21
|
+
downstream:
|
22
|
+
name: downstream-${{matrix.name}}-${{matrix.platform}}
|
23
|
+
strategy:
|
24
|
+
fail-fast: false
|
25
|
+
matrix:
|
26
|
+
name: [re2, nokogiri, sqlite3]
|
27
|
+
platform: [ubuntu-latest, windows-latest, macos-latest]
|
28
|
+
include:
|
29
|
+
- name: re2
|
30
|
+
url: https://github.com/mudge/re2
|
31
|
+
command: "bundle exec rake compile spec"
|
32
|
+
ruby: "3.3"
|
33
|
+
- name: nokogiri
|
34
|
+
url: https://github.com/sparklemotion/nokogiri
|
35
|
+
command: "bundle exec rake compile test"
|
36
|
+
ruby: "3.3"
|
37
|
+
- name: sqlite3
|
38
|
+
url: https://github.com/sparklemotion/sqlite3-ruby
|
39
|
+
command: "bundle exec rake compile test"
|
40
|
+
ruby: "3.3"
|
41
|
+
runs-on: ${{matrix.platform}}
|
42
|
+
steps:
|
43
|
+
- name: configure git crlf
|
44
|
+
if: ${{ startsWith(matrix.platform, 'windows') }}
|
45
|
+
run: |
|
46
|
+
git config --system core.autocrlf false
|
47
|
+
git config --system core.eol lf
|
48
|
+
- uses: actions/checkout@v4
|
49
|
+
- uses: ruby/setup-ruby@v1
|
50
|
+
with:
|
51
|
+
ruby-version: ${{matrix.ruby}}
|
52
|
+
bundler-cache: true
|
53
|
+
bundler: latest
|
54
|
+
- run: git clone --depth=1 ${{matrix.url}} ${{matrix.name}}
|
55
|
+
- uses: actions/cache@v4
|
56
|
+
with:
|
57
|
+
path: ${{matrix.name}}/ports/archives
|
58
|
+
key: tarballs-${{matrix.name}}
|
59
|
+
enableCrossOsArchive: true
|
60
|
+
- name: ${{matrix.name}} test suite
|
61
|
+
working-directory: ${{matrix.name}}
|
62
|
+
run: |
|
63
|
+
bundle remove mini_portile2 || true
|
64
|
+
bundle add mini_portile2 --path=".."
|
65
|
+
bundle install --local || bundle install
|
66
|
+
${{matrix.command}}
|
data/CHANGELOG.md
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mini_portile2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.8.7
|
4
|
+
version: 2.8.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luis Lavena
|
@@ -107,6 +107,7 @@ extra_rdoc_files: []
|
|
107
107
|
files:
|
108
108
|
- ".github/FUNDING.yml"
|
109
109
|
- ".github/workflows/ci.yml"
|
110
|
+
- ".github/workflows/downstream.yml"
|
110
111
|
- ".gitignore"
|
111
112
|
- CHANGELOG.md
|
112
113
|
- Gemfile
|