simp-test 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/pr_tests.yml +0 -18
- data/.github/workflows/tag_deploy_rubygem.yml +16 -1
- data/lib/simp/test/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d4891a094b98135f3e6eccc459822811eb8deae5751ff472bdb8107bb2687c7
|
|
4
|
+
data.tar.gz: 25a8d63808f9da2b74b99449506ee4f89f6377c4ca80de5183c5332787750beb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a9294262766b92d769dce62bb2d7a6e5b357ca33db4f86fcb6f08c8bb4acdb89f964a55599b02bc46712421bba26ba176ec777129e0c0018eba8154f35a5efc
|
|
7
|
+
data.tar.gz: 9c4e2dd934bbc5140f8c216d23eb310e12f4d788db115a02893957ff76cfc88395b3c5387428a86fbffe6a87bcd6082a025ddc17cc2ad4674282ecab1ec73a46
|
|
@@ -38,24 +38,6 @@ jobs:
|
|
|
38
38
|
bundle show
|
|
39
39
|
bundle exec rake rubocop
|
|
40
40
|
|
|
41
|
-
# releng-checks:
|
|
42
|
-
# name: 'RELENG checks'
|
|
43
|
-
# runs-on: ubuntu-18.04
|
|
44
|
-
# steps:
|
|
45
|
-
# - uses: actions/checkout@v2
|
|
46
|
-
# - name: 'Install Ruby ${{matrix.puppet.ruby_version}}'
|
|
47
|
-
# uses: ruby/setup-ruby@v1
|
|
48
|
-
# with:
|
|
49
|
-
# ruby-version: 2.5
|
|
50
|
-
# bundler-cache: true
|
|
51
|
-
# - name: 'Tags and changelogs'
|
|
52
|
-
# run: |
|
|
53
|
-
# bundle exec rake pkg:check_version
|
|
54
|
-
# bundle exec rake pkg:compare_latest_tag
|
|
55
|
-
# bundle exec rake pkg:create_tag_changelog
|
|
56
|
-
# - name: 'Test-build the Puppet module'
|
|
57
|
-
# run: 'bundle exec pdk build --force'
|
|
58
|
-
|
|
59
41
|
spec-tests:
|
|
60
42
|
name: 'Spec tests'
|
|
61
43
|
runs-on: ubuntu-18.04
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Build & Deploy RubyGem & GitHub release when a SemVer tag is pushed
|
|
2
|
+
#
|
|
3
|
+
# This workflow's jobs only trigger within the `simp` organization
|
|
2
4
|
# ------------------------------------------------------------------------------
|
|
3
5
|
#
|
|
4
6
|
# NOTICE: **This file is maintained with puppetsync**
|
|
5
7
|
#
|
|
6
|
-
# This file is updated automatically as part of
|
|
8
|
+
# This file is updated automatically as part of a standardized asset baseline.
|
|
7
9
|
#
|
|
8
10
|
# The next baseline sync will overwrite any local changes to this file!
|
|
9
11
|
#
|
|
@@ -34,8 +36,19 @@ env:
|
|
|
34
36
|
LOCAL_WORKFLOW_CONFIG_FILE: .github/workflows.local.json
|
|
35
37
|
|
|
36
38
|
jobs:
|
|
39
|
+
dump_contexts:
|
|
40
|
+
name: 'Examine Context contents'
|
|
41
|
+
if: github.repository_owner == 'simp'
|
|
42
|
+
runs-on: ubuntu-16.04
|
|
43
|
+
steps:
|
|
44
|
+
- name: Dump contexts
|
|
45
|
+
env:
|
|
46
|
+
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
47
|
+
run: echo "$GITHUB_CONTEXT"
|
|
48
|
+
|
|
37
49
|
releng-checks:
|
|
38
50
|
name: "RELENG checks"
|
|
51
|
+
if: github.repository_owner == 'simp'
|
|
39
52
|
runs-on: ubuntu-18.04
|
|
40
53
|
outputs:
|
|
41
54
|
build_command: ${{ steps.commands.outputs.build_command }}
|
|
@@ -74,6 +87,7 @@ jobs:
|
|
|
74
87
|
create-github-release:
|
|
75
88
|
name: Deploy GitHub Release
|
|
76
89
|
needs: [ releng-checks ]
|
|
90
|
+
if: github.repository_owner == 'simp'
|
|
77
91
|
runs-on: ubuntu-18.04
|
|
78
92
|
steps:
|
|
79
93
|
- name: Checkout code
|
|
@@ -117,6 +131,7 @@ jobs:
|
|
|
117
131
|
deploy-rubygem:
|
|
118
132
|
name: Deploy RubyGem Release
|
|
119
133
|
needs: [ releng-checks ]
|
|
134
|
+
if: github.repository_owner == 'simp'
|
|
120
135
|
runs-on: ubuntu-18.04
|
|
121
136
|
env:
|
|
122
137
|
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
|
data/lib/simp/test/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simp-test
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SIMP Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-02-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description:
|
|
14
14
|
email:
|