Skip to content

(PA-6764) Add MacOS 15 ARM to the install-puppet script #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 29, 2025
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: 1 addition & 5 deletions .github/workflows/install_puppet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ on:
pull_request:
branches: [ main ]

# Even though checkout@v3 is end-of-life, we cannot upgrade to v4
# because it cannot run on CentOS 7 and Ubuntu 18.04
jobs:
install-puppet:
name: ${{ matrix.collection }} / ${{ matrix.os.name }}
Expand All @@ -17,19 +15,17 @@ jobs:
matrix:
collection: [ puppet7, puppet8 ]
os: [
{ name: "CentOS 7", image: "litmusimage/centos:7" },
{ name: "Debian 10", image: "litmusimage/debian:10" },
{ name: "Debian 11", image: "litmusimage/debian:11" },
{ name: "Debian 12", image: "litmusimage/debian:12" },
{ name: "Ubuntu 18.04", image: "litmusimage/ubuntu:18.04" },
{ name: "Ubuntu 20.04", image: "litmusimage/ubuntu:20.04" },
{ name: "Ubuntu 22.04", image: "litmusimage/ubuntu:22.04" },
]
container:
image: ${{ matrix.os.image }}
steps:
- name: Checkout current PR
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install puppet-agent from ${{ matrix.collection }} collection
Expand Down
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ if [ -n "$PT_mac_source" ]; then
mac_source=$PT_mac_source
else
if [ "$nightly" = true ]; then
mac_source='http://nightlies.puppet.com/downloads'
mac_source='https://artifactory.delivery.puppetlabs.net:443/artifactory/internal_nightly__local/downloads'
else
mac_source='http://downloads.puppet.com'
fi
Expand Down Expand Up @@ -481,6 +481,7 @@ if true; then
"12") platform_version="12";;
"13") platform_version="13";;
"14") platform_version="14";;
"15") platform_version="15";;
*) echo "No builds for platform: $major_version"
exit 1
;;
Expand Down