-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
68 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
custom/testing/golden-state-tree/python/amazon_dependencies.sls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Install dnf config manager | ||
install_config_command: | ||
cmd.run: | ||
- name: dnf install -y 'dnf-command(config-manager)' | ||
|
||
|
||
# Use config manager to enable powertools repo. This is needed for libnsl2-devel | ||
enable_powertools_repo: | ||
cmd.run: | ||
- name: dnf config-manager --set-enabled powertools | ||
- require: | ||
- install_config_command | ||
|
||
|
||
python_dependencies: | ||
pkg.latest: | ||
- pkgs: | ||
- gcc | ||
- make | ||
- findutils | ||
- openssl | ||
- openssl-devel | ||
- libffi-devel | ||
- bzip2-devel | ||
- zlib-devel | ||
- libuuid-devel | ||
- readline-devel | ||
- ncurses-devel | ||
- gdbm-devel | ||
- sqlite-devel | ||
- xz-devel | ||
- libnsl2-devel | ||
- require: | ||
- enable_powertools_repo |
17 changes: 17 additions & 0 deletions
17
custom/testing/golden-state-tree/python/fedora_dependencies.sls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
python_dependencies: | ||
pkg.latest: | ||
- pkgs: | ||
- gcc | ||
- make | ||
- findutils | ||
- openssl-devel | ||
- libffi-devel | ||
- bzip2-devel | ||
- zlib-ng-compat-devel | ||
- libuuid-devel | ||
- readline-devel | ||
- ncurses-devel | ||
- gdbm-devel | ||
- sqlite-devel | ||
- xz-devel | ||
- libnsl2-devel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters