(CAT-2379) Puppetcore update #252
Workflow file for this run
This file contains hidden or 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
| name: "ci" | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| workflow_dispatch: | |
| env: | |
| PUPPET_FORGE_TOKEN: ${{ secrets.PUPPET_FORGE_TOKEN_PUBLIC }} | |
| BUNDLE_RUBYGEMS___PUPPETCORE__PUPPET__COM: "forge-key:${{ secrets.PUPPET_FORGE_TOKEN_PUBLIC }}" | |
| jobs: | |
| Spec: | |
| uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main" | |
| with: | |
| runs_on: "ubuntu-24.04" | |
| secrets: "inherit" | |
| setup_matrix: | |
| name: "Setup Test Matrix" | |
| needs: Spec | |
| runs-on: "ubuntu-24.04" | |
| outputs: | |
| matrix: ${{ steps.get-matrix.outputs.matrix }} | |
| env: | |
| BUNDLE_WITHOUT: release_prep | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v4" | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: "Setup ruby" | |
| uses: "ruby/setup-ruby@v1" | |
| with: | |
| ruby-version: "3.1" | |
| bundler-cache: true | |
| - name: Setup Test Matrix | |
| id: get-matrix | |
| run: | | |
| bundle exec matrix_from_metadata_v3 --provision-prefer provision_service --nightly --platform-exclude scientific-7 --platform-exclude ubuntu-18.04 --platform-exclude debian-10 | |
| Acceptance: | |
| name: "Acceptance tests (${{matrix.platforms.label}}, ${{matrix.collection.collection || matrix.collection}})" | |
| needs: setup_matrix | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 180 | |
| strategy: | |
| fail-fast: false | |
| matrix: ${{fromJson(needs.setup_matrix.outputs.matrix)}} | |
| env: | |
| BUNDLE_WITHOUT: release_prep | |
| PUPPET_GEM_VERSION: '~> 8.9' | |
| FACTER_GEM_VERSION: 'https://github.com/puppetlabs/facter#main' # why is this set? | |
| TWINGATE_PUBLIC_REPO_KEY: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }} | |
| steps: | |
| - name: "Install Twingate" | |
| uses: "twingate/github-action@v1" | |
| with: | |
| service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }} | |
| - name: Fix DNS | |
| run: | | |
| echo "=== Remove Azure DNS from eth0 interface ===" | |
| sudo resolvectl dns eth0 "" | |
| echo "=== Configure Twingate DNS properly ===" | |
| sudo resolvectl dns sdwan0 100.95.0.251 100.95.0.252 | |
| sudo resolvectl domain sdwan0 delivery.puppetlabs.net | |
| echo "=== Flush DNS cache ===" | |
| sudo resolvectl flush-caches | |
| echo "=== Check new configuration ===" | |
| resolvectl status | |
| echo "=== Test DNS resolution ===" | |
| nslookup artifactory.delivery.puppetlabs.net | |
| - name: "Checkout" | |
| uses: "actions/checkout@v4" | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: "Setup ruby" | |
| uses: "ruby/setup-ruby@v1" | |
| with: | |
| ruby-version: "3.1" | |
| bundler-cache: true | |
| - name: "Bundle environment" | |
| run: | | |
| bundle env | |
| - name: "Provision environment" | |
| run: | | |
| bundle exec rake "litmus:provision[${{matrix.platforms.provider}},${{ matrix.platforms.image }}]" | |
| # Redact password | |
| FILE='spec/fixtures/litmus_inventory.yaml' | |
| sed -e 's/password: .*/password: "[redacted]"/' < $FILE || true | |
| - name: "Install Puppet agent" | |
| run: | | |
| if [[ "${{ matrix.collection.version }}" ]] ; then | |
| export PUPPET_VERSION=${{ matrix.collection.version }} | |
| bundle exec rake 'litmus:install_agent[${{ matrix.collection.collection }}]' | |
| else | |
| bundle exec rake 'litmus:install_agent[${{ matrix.collection }}]' | |
| fi | |
| - name: "Install module" | |
| run: | | |
| bundle exec rake 'litmus:install_module' | |
| - name: "Authenticate to GCP" | |
| run: | | |
| echo '${{ secrets.GCP_CONNECTION }}' >> creds.json | |
| bundle exec bolt file upload creds.json creds.json -t ssh_nodes -i spec/fixtures/litmus_inventory.yaml | |
| bundle exec bolt command run "gcloud auth activate-service-account --key-file creds.json" -t ssh_nodes -i spec/fixtures/litmus_inventory.yaml | |
| - name: "Run acceptance tests" | |
| run: | | |
| bundle exec rake 'litmus:acceptance:parallel' | |
| - name: "Remove test environment" | |
| if: ${{ always() }} | |
| continue-on-error: true | |
| run: | | |
| bundle exec rake 'litmus:tear_down' |