. π 𧬠Test package installation #2320
This file contains 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: . π 𧬠Test package installation | |
on: | |
schedule: | |
# Scheduled to run at x:00 every hour. | |
- cron: '0 * * * *' | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Version of the agent to test installation' | |
required: true | |
type: string | |
default: '1.47.0' | |
staging: | |
description: 'Should run tests using staging bucket?' | |
type: boolean | |
default: false | |
required: false | |
jobs: | |
molecule-packaging-tests: | |
uses: ./.github/workflows/component_molecule_packaging.yml | |
with: | |
TAG: "${{ github.event.inputs.tag || '1.47.0' }}" | |
REPO_ENDPOINT: ${{ github.event.inputs.staging == 'true' && 'http://nr-downloads-ohai-staging.s3-website-us-east-1.amazonaws.com/infrastructure_agent' || 'https://download.newrelic.com/infrastructure_agent' }} |