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
6 changes: 3 additions & 3 deletions task_spec/spec/acceptance/init_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def log_output_errors(result)
'7.18.0'
when %r{osx-13}
'7.26.0'
when %r{el-9-aarch64}, %r{ubuntu-22.04-aarch64}, %r{amazon-2023-x86_64}, %r{amazon-2023-aarch64}
when %r{el-9-aarch64}, %r{ubuntu-22.04-aarch64}, %r{amazon-2023-x86_64}, %r{amazon-2023-aarch64}, %r{osx-14}
'latest'
else
'7.18.0'
Expand All @@ -71,7 +71,7 @@ def log_output_errors(result)
# else
# end
case target_platform
when %r{el-9-aarch64}, %r{ubuntu-22.04-aarch64}, %r{amazon-2023-x86_64}, %r{amazon-2023-aarch64}
when %r{el-9-aarch64}, %r{ubuntu-22.04-aarch64}, %r{amazon-2023-x86_64}, %r{amazon-2023-aarch64}, %r{osx-14}
puppet_7_collection = 'puppet7-nightly'
puppet_8_collection = 'puppet8-nightly'
else
Expand All @@ -89,7 +89,7 @@ def log_output_errors(result)
# true
# end
multiple_puppet7_versions = case target_platform
when %r{osx-13|el-9-aarch64}
when %r{osx-13|osx-14|el-9-aarch64}
false
else
true
Expand Down
1 change: 1 addition & 0 deletions tasks/install_shell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ if [ -f "$PT__installdir/facts/tasks/bash.sh" ]; then
"11") platform_version="11";;
"12") platform_version="12";;
"13") platform_version="13";;
"14") platform_version="14";;
*) echo "No builds for platform: $major_version"
exit 1
;;
Expand Down