manageiq-cross_repo 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +1 -1
- data/.github/workflows/ci.yaml +5 -5
- data/.github/workflows/manageiq_cross_repo.yaml +6 -6
- data/CHANGELOG.md +8 -1
- data/lib/manageiq/cross_repo/runner/base.rb +5 -5
- data/lib/manageiq/cross_repo/runner/github.rb +1 -1
- data/lib/manageiq/cross_repo/version.rb +1 -1
- data/renovate.json +6 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6288ce7865dc20da52f82f88372dc4abe11e07160308c1c6813b657f06b7e9b0
|
4
|
+
data.tar.gz: 423111bce90b294de5eb4ad742b0c6a98adce1a3b4b368ea8adc9459cde8ccf7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04a079d474cfeb859535d2fe1805d7b6ad5fd2a6d9c5bed13b991b97d1a0e122430c40f2a0d589aa48dfeb9837799626b17c78be087e8323be31975448a3dbfc
|
7
|
+
data.tar.gz: 974b2c169b9f09df26c94fd63ab64cf3b0c3d2f2abb01422ae47540b99c5b6e4eb8cc053562c586b688577ce7ab24ef97314e48792b7c3465e43a5ce93fd131d
|
data/.codeclimate.yml
CHANGED
data/.github/workflows/ci.yaml
CHANGED
@@ -1,11 +1,10 @@
|
|
1
|
+
---
|
1
2
|
name: CI
|
2
|
-
|
3
3
|
on:
|
4
4
|
push:
|
5
5
|
pull_request:
|
6
6
|
schedule:
|
7
|
-
- cron:
|
8
|
-
|
7
|
+
- cron: 0 0 * * 0
|
9
8
|
jobs:
|
10
9
|
ci:
|
11
10
|
runs-on: ubuntu-latest
|
@@ -16,12 +15,13 @@ jobs:
|
|
16
15
|
- '2.6'
|
17
16
|
- '2.7'
|
18
17
|
- '3.0'
|
18
|
+
- '3.1'
|
19
19
|
steps:
|
20
|
-
- uses: actions/checkout@
|
20
|
+
- uses: actions/checkout@v4
|
21
21
|
- name: Set up Ruby
|
22
22
|
uses: ruby/setup-ruby@v1
|
23
23
|
with:
|
24
|
-
ruby-version: ${{ matrix.ruby-version }}
|
24
|
+
ruby-version: "${{ matrix.ruby-version }}"
|
25
25
|
bundler-cache: true
|
26
26
|
timeout-minutes: 30
|
27
27
|
- name: Run tests
|
@@ -15,11 +15,11 @@ on:
|
|
15
15
|
ruby-version:
|
16
16
|
required: false
|
17
17
|
type: string
|
18
|
-
default: '["
|
18
|
+
default: '["3.0"]'
|
19
19
|
node-version:
|
20
20
|
required: false
|
21
21
|
type: string
|
22
|
-
default: '["
|
22
|
+
default: '["18"]'
|
23
23
|
|
24
24
|
jobs:
|
25
25
|
ci:
|
@@ -32,7 +32,7 @@ jobs:
|
|
32
32
|
node-version: ${{ fromJson(inputs.node-version) }}
|
33
33
|
services:
|
34
34
|
postgres:
|
35
|
-
image: manageiq/postgresql:
|
35
|
+
image: manageiq/postgresql:13
|
36
36
|
env:
|
37
37
|
POSTGRESQL_USER: root
|
38
38
|
POSTGRESQL_PASSWORD: smartvm
|
@@ -41,7 +41,7 @@ jobs:
|
|
41
41
|
ports:
|
42
42
|
- 5432:5432
|
43
43
|
memcached:
|
44
|
-
image: manageiq/memcached:1.
|
44
|
+
image: manageiq/memcached:1.6
|
45
45
|
ports:
|
46
46
|
- 11211:11211
|
47
47
|
env:
|
@@ -51,14 +51,14 @@ jobs:
|
|
51
51
|
PGHOST: localhost
|
52
52
|
PGPASSWORD: smartvm
|
53
53
|
steps:
|
54
|
-
- uses: actions/checkout@
|
54
|
+
- uses: actions/checkout@v4
|
55
55
|
- name: Set up Ruby
|
56
56
|
uses: ruby/setup-ruby@v1
|
57
57
|
with:
|
58
58
|
ruby-version: ${{ matrix.ruby-version }}
|
59
59
|
bundler-cache: true
|
60
60
|
- name: Set up Node
|
61
|
-
uses: actions/setup-node@
|
61
|
+
uses: actions/setup-node@v4
|
62
62
|
with:
|
63
63
|
node-version: ${{ matrix.node-version }}
|
64
64
|
registry-url: https://npm.manageiq.org/
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
5
5
|
## [Unreleased]
|
6
6
|
|
7
|
+
## [2.3.1] - 2024-04-26
|
8
|
+
### Fixed
|
9
|
+
- Fix nodejs install not being overridden by repo ci.yml (#109)
|
10
|
+
|
7
11
|
## [2.3.0] - 2023-03-13
|
8
12
|
### Changed
|
9
13
|
- Add {ruby/node}-version matrix inputs (#94)
|
@@ -69,7 +73,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
69
73
|
- Fix an issue extracting tgz files smaller than 10Kb
|
70
74
|
- Fix an issue overriding gems whose repo name doesn't match
|
71
75
|
|
72
|
-
[Unreleased]: https://github.com/ManageIQ/manageiq-cross_repo/compare/v2.1
|
76
|
+
[Unreleased]: https://github.com/ManageIQ/manageiq-cross_repo/compare/v2.3.1...HEAD
|
77
|
+
[2.3.1]: https://github.com/ManageIQ/manageiq-cross_repo/compare/v2.3.1..v2.3.0
|
78
|
+
[2.3.0]: https://github.com/ManageIQ/manageiq-cross_repo/compare/v2.3.0..v2.2.0
|
79
|
+
[2.2.0]: https://github.com/ManageIQ/manageiq-cross_repo/compare/v2.2.0..v2.1.0
|
73
80
|
[2.1.0]: https://github.com/ManageIQ/manageiq-cross_repo/compare/v2.1.0..v2.0.0
|
74
81
|
[2.0.0]: https://github.com/ManageIQ/manageiq-cross_repo/compare/v2.0.0...v1.2.1
|
75
82
|
[1.2.1]: https://github.com/ManageIQ/manageiq-cross_repo/compare/v1.2.0...v1.2.1
|
@@ -81,14 +81,14 @@ module ManageIQ::CrossRepo
|
|
81
81
|
def defaults
|
82
82
|
@defaults ||= {
|
83
83
|
"node_js" => {
|
84
|
-
"language"
|
85
|
-
"node_js"
|
86
|
-
"
|
87
|
-
"script"
|
84
|
+
"language" => "node_js",
|
85
|
+
"node_js" => ["18"],
|
86
|
+
"before_script" => "yarn",
|
87
|
+
"script" => "yarn run test"
|
88
88
|
},
|
89
89
|
"ruby" => {
|
90
90
|
"language" => "ruby",
|
91
|
-
"rvm" => ["
|
91
|
+
"rvm" => ["3.1"],
|
92
92
|
"install" => "bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}",
|
93
93
|
"script" => "bundle exec rake"
|
94
94
|
}
|
@@ -19,7 +19,7 @@ module ManageIQ::CrossRepo
|
|
19
19
|
steps = github_config["jobs"]["ci"]["steps"]
|
20
20
|
steps_by_name = steps.index_by { |step| step["name"] }
|
21
21
|
|
22
|
-
language = steps.any? { |s| s["uses"]
|
22
|
+
language = steps.any? { |s| s["uses"].to_s.start_with?("ruby/setup-ruby") } ? "ruby" : "node_js"
|
23
23
|
|
24
24
|
result = {"language" => language}
|
25
25
|
|
data/renovate.json
ADDED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: manageiq-cross_repo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ManageIQ Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: manageiq-style
|
@@ -155,6 +155,7 @@ files:
|
|
155
155
|
- lib/manageiq/cross_repo/runner/travis.rb
|
156
156
|
- lib/manageiq/cross_repo/version.rb
|
157
157
|
- manageiq-cross_repo.gemspec
|
158
|
+
- renovate.json
|
158
159
|
- repos/.gitkeep
|
159
160
|
homepage: https://github.com/ManageIQ/manageiq-cross_repo
|
160
161
|
licenses:
|
@@ -177,7 +178,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
177
178
|
- !ruby/object:Gem::Version
|
178
179
|
version: '0'
|
179
180
|
requirements: []
|
180
|
-
rubygems_version: 3.
|
181
|
+
rubygems_version: 3.4.20
|
181
182
|
signing_key:
|
182
183
|
specification_version: 4
|
183
184
|
summary: ManageIQ CrossRepo testing library
|