Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/pr_acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ jobs:
- label: beaker puppet_collections
suite: puppet_collections
allowed_to_fail: false
- label: beaker ssg
suite: ssg
allowed_to_fail: false
# The inspec suite fails for unclear reasons during an scp.
# Sicura tests compliance at the framework level, so troubleshooting
# inspec acceptance tests is not a priority at present.
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
* The `beaker:suites` task now depends on `fixtures:prep` (from
`puppet_fixtures`) instead of `spec_prep`, and `ensure_fixture_modules` now
runs `rake fixtures:prep`.
* Removed (**Breaking**):
* Removed the unsupported `Simp::BeakerHelpers::SSG` helpers, the `ssg`
acceptance suite, and the `SSG_REPO_URL` constant (#268)
* Added:
* `puppet_fixtures` runtime dependency
* OpenVox-named environment variables for `get_puppet_install_info`, taking
Expand All @@ -21,7 +24,6 @@
### 2.0.5 / 2026-06-06
* Fixed:
* Additional cleanup for rubocop

### 2.0.4 / 2025-10-16
* Fixed:
* `install_puppet` failure on Windows (#266)
Expand Down
1 change: 0 additions & 1 deletion lib/simp/beaker_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ module Simp::BeakerHelpers # rubocop:disable Style/OneClassPerFile
require 'simp/beaker_helpers/constants'
require 'simp/beaker_helpers/inspec'
require 'simp/beaker_helpers/snapshot'
require 'simp/beaker_helpers/ssg'
require 'simp/beaker_helpers/version'
require 'find'

Expand Down
2 changes: 0 additions & 2 deletions lib/simp/beaker_helpers/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ module Simp::BeakerHelpers # rubocop:disable Style/OneClassPerFile
# oldest system that we support
DEFAULT_PUPPET_AGENT_VERSION = '~> 8.0'.freeze

SSG_REPO_URL = ENV['BEAKER_ssg_repo'] || 'https://github.com/ComplianceAsCode/content.git'

if ['true', 'yes'].include?(ENV['BEAKER_online'])
ONLINE = true
elsif ['false', 'no'].include?(ENV['BEAKER_online'])
Expand Down
Loading