Skip to content

Commit

Permalink
Fix SSG Builds (#178)
Browse files Browse the repository at this point in the history
Added `python-setuptools` to the required package list

Closes #177
  • Loading branch information
trevor-vaughan authored Apr 10, 2022
1 parent 63f46a4 commit 3434da8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.24.3 / 2022-04-10
* Fixed:
* Added python-setuptools to the list of required packages

### 1.24.2 / 2022-03-09
* Fixed:
* Prevent `spec/` directory symlink recursion in `copy_fixture_modules_to`
Expand Down
6 changes: 4 additions & 2 deletions lib/simp/beaker_helpers/ssg.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@ class SSG
'PyYAML',
'cmake',
'git',
'openscap-scanner',
'openscap-python',
'openscap-scanner',
'openscap-utils',
'python-jinja2',
'python-lxml'
'python-lxml',
'python-setuptools'
]

EL8_PACKAGES = [
Expand All @@ -41,6 +42,7 @@ class SSG
'python3-jinja2',
'python3-lxml',
'python3-pyyaml',
'python3-setuptools',
'libarchive'
]

Expand Down
2 changes: 1 addition & 1 deletion lib/simp/beaker_helpers/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Simp; end

module Simp::BeakerHelpers
VERSION = '1.24.2'
VERSION = '1.24.3'
end
8 changes: 0 additions & 8 deletions spec/acceptance/nodesets/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,6 @@ HOSTS:
box: generic/centos8
hypervisor: <%= hypervisor %>

el8-0:
roles:
- el8
platform: el-8-x86_64
box: centos/8
box_version: "1905.1"
hypervisor: <%= hypervisor %>

CONFIG:
log_level: verbose
type: aio
Expand Down

0 comments on commit 3434da8

Please sign in to comment.