From 9a4f4eb5760b541295fa1e968b085beba03326bd Mon Sep 17 00:00:00 2001 From: Shubham Shinde Date: Fri, 5 Dec 2025 12:38:48 +0530 Subject: [PATCH 1/4] (CAT-2377) For debugging purposes --- .github/workflows/ci.yml | 4 +- metadata.json | 79 ---------------------------------------- 2 files changed, 2 insertions(+), 81 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f47b156..f360cc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,12 @@ on: jobs: Spec: - uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main" + uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@ubuntu-22-test" secrets: "inherit" Acceptance: needs: Spec - uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main" + uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@ubuntu-22-test" secrets: "inherit" with: flags: "--nightly" diff --git a/metadata.json b/metadata.json index 3d0dab5..2ed152f 100644 --- a/metadata.json +++ b/metadata.json @@ -11,90 +11,11 @@ ], "operatingsystem_support": [ - { - "operatingsystem": "RedHat", - "operatingsystemrelease": [ - "7", - "8", - "9" - ] - }, - { - "operatingsystem": "CentOS", - "operatingsystemrelease": [ - "7", - "8" - ] - }, - { - "operatingsystem": "OracleLinux", - "operatingsystemrelease": [ - "7" - ] - }, - { - "operatingsystem": "Scientific", - "operatingsystemrelease": [ - "7" - ] - }, { "operatingsystem": "SLES", "operatingsystemrelease": [ - "12", - "15" - ] - }, - { - "operatingsystem": "Debian", - "operatingsystemrelease": [ - "10", - "11", "12" ] - }, - { - "operatingsystem": "Ubuntu", - "operatingsystemrelease": [ - "18.04", - "20.04", - "22.04" - ] - }, - { - "operatingsystem": "Solaris", - "operatingsystemrelease": [ - "11" - ] - }, - { - "operatingsystem": "AIX", - "operatingsystemrelease": [ - "7.1" - ] - }, - { - "operatingsystem": "Windows", - "operatingsystemrelease": [ - "2012", - "2012 R2", - "2016", - "2019", - "10", - "2022" - ] - }, - { - "operatingsystem": "Rocky", - "operatingsystemrelease": [ - "8" - ] - }, - { - "operatingsystem": "AlmaLinux", - "operatingsystemrelease": [ - "8" - ] } ], "requirements": [ From fd79ac0033429fef8d5018ab3dc0385874f6b15f Mon Sep 17 00:00:00 2001 From: Shubham Shinde Date: Mon, 8 Dec 2025 12:43:47 +0530 Subject: [PATCH 2/4] Update puppet_agent module to point to test branch --- .fixtures.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.fixtures.yml b/.fixtures.yml index 8cfb056..45a6c3a 100644 --- a/.fixtures.yml +++ b/.fixtures.yml @@ -2,7 +2,9 @@ fixtures: repositories: facts: 'https://github.com/puppetlabs/puppetlabs-facts.git' provision: 'https://github.com/puppetlabs/provision.git' - puppet_agent: 'https://github.com/puppetlabs/puppetlabs-puppet_agent.git' + puppet_agent: + repo: "https://github.com/puppetlabs/puppetlabs-puppet_agent.git" + ref: "CAT-2377" forge_modules: chocolatey: "puppetlabs/chocolatey" java: "puppetlabs/java" From 92a9b99b439359fcb143b20650e97e7a8bb9a254 Mon Sep 17 00:00:00 2001 From: Shubham Shinde Date: Mon, 8 Dec 2025 12:49:07 +0530 Subject: [PATCH 3/4] Fix pulling branch issue --- .fixtures.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.fixtures.yml b/.fixtures.yml index 45a6c3a..a3b8218 100644 --- a/.fixtures.yml +++ b/.fixtures.yml @@ -3,8 +3,8 @@ fixtures: facts: 'https://github.com/puppetlabs/puppetlabs-facts.git' provision: 'https://github.com/puppetlabs/provision.git' puppet_agent: - repo: "https://github.com/puppetlabs/puppetlabs-puppet_agent.git" - ref: "CAT-2377" + repo: "https://github.com/shubhamshinde360/puppetlabs-puppet_agent.git" + ref: "v0.0.0" forge_modules: chocolatey: "puppetlabs/chocolatey" java: "puppetlabs/java" From 2df2b35bdbd64d8322b315663d54d22332837bfe Mon Sep 17 00:00:00 2001 From: Shubham Shinde Date: Mon, 8 Dec 2025 13:51:28 +0530 Subject: [PATCH 4/4] Provision VMs only --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f360cc9..271243f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,12 @@ on: jobs: Spec: - uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@ubuntu-22-test" + uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@provision_only" secrets: "inherit" Acceptance: needs: Spec - uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@ubuntu-22-test" + uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@provision_only" secrets: "inherit" with: flags: "--nightly"