Skip to content
Closed
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
34 changes: 18 additions & 16 deletions .fixtures.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
---
fixtures:
forge_modules:
ruby_task_helper: "puppetlabs/ruby_task_helper"
service: "puppetlabs/service"
package: "puppetlabs/package"
reboot: "puppetlabs/reboot"
inifile: "puppetlabs/inifile"
ruby_task_helper: puppetlabs/ruby_task_helper
service: puppetlabs/service
package: puppetlabs/package
reboot: puppetlabs/reboot
inifile: puppetlabs/inifile
repositories:
facts: "https://github.com/puppetlabs/puppetlabs-facts.git"
puppet_agent: "https://github.com/puppetlabs/puppetlabs-puppet_agent.git"
provision: "https://github.com/puppetlabs/provision.git"
stdlib: "https://github.com/puppetlabs/puppetlabs-stdlib.git"
apply_helpers: "https://github.com/puppetlabs/puppetlabs-apply_helpers"
bolt_shim: "https://github.com/puppetlabs/puppetlabs-bolt_shim"
format: "https://github.com/voxpupuli/puppet-format"
container_inventory: "https://gitlab.com/nwops/bolt-container_inventory.git"
node_manager: "https://github.com/puppetlabs/puppetlabs-node_manager.git"
facts: https://github.com/puppetlabs/puppetlabs-facts.git
puppet_agent: https://github.com/puppetlabs/puppetlabs-puppet_agent.git
provision:
repo: https://github.com/puppetlabs/provision.git
ref: v3.0.1
stdlib: https://github.com/puppetlabs/puppetlabs-stdlib.git
apply_helpers: https://github.com/puppetlabs/puppetlabs-apply_helpers
bolt_shim: https://github.com/puppetlabs/puppetlabs-bolt_shim
format: https://github.com/voxpupuli/puppet-format
container_inventory: https://gitlab.com/nwops/bolt-container_inventory.git
node_manager: https://github.com/puppetlabs/puppetlabs-node_manager.git
symlinks:
"peadm": "#{source_dir}"
"peadm_spec": "#{source_dir}/spec/acceptance/peadm_spec"
peadm: '#{source_dir}'
peadm_spec: '#{source_dir}/spec/acceptance/peadm_spec'
39 changes: 22 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
---
name: ci
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
Spec:
if: ${{ github.repository_owner == 'puppetlabs' }}
uses: puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main
secrets: inherit
Acceptance:
if: ${{ github.repository_owner == 'puppetlabs' }}
needs: Spec
uses: puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main
with:
flags: --provision-service
secrets: inherit
name: ci
on:
pull_request:
branches: [main]
workflow_dispatch:
inputs:
APT_SOURCES:
required: false
default: 'https://artifactory.delivery.puppetlabs.net:443/artifactory/internal_nightly__local/apt'
jobs:
Spec:
if: ${{ github.repository_owner == 'puppetlabs' }}
uses: puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main
secrets: inherit
Acceptance:
if: ${{ github.repository_owner == 'puppetlabs' }}
needs: Spec
uses: puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main
with:
flags: --provision-service
APT_SOURCES: ${{ github.event.inputs.APT_SOURCES || 'https://artifactory.delivery.puppetlabs.net:443/artifactory/internal_nightly__local/apt' }}
secrets: inherit
Loading