feat: add new ubuntu2604 os #254
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: 🧬 Testing pipeline | |
| on: | |
| push: | |
| jobs: | |
| molecule-packaging-tests: | |
| name: Launch molecule tests with infra-agent package | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # test building and using pre-build containers. | |
| build_docker: ["true",""] | |
| env: | |
| TESTING: ${{ matrix.build_docker}} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Molecule tests | |
| uses: ./ | |
| with: | |
| repo_base_url: 'https://download.newrelic.com/infrastructure_agent' | |
| package_name: 'newrelic-infra' | |
| package_version: '1.72.0' | |
| gpg_key: 'https://download.newrelic.com/infrastructure_agent/gpg/newrelic-infra.gpg' | |
| # Note: ubuntu2604 excluded - waiting for New Relic to publish packages for Ubuntu 26.04 "resolute" | |
| # Infrastructure for ubuntu2604 is ready (dockerfile, ansible roles support apt-key detection) | |
| # but no packages available yet at: https://download.newrelic.com/infrastructure_agent/linux/apt/dists/resolute/ | |
| platforms: "al2,al2023,centos7,centos8,debian-bullseye,debian-trixie,redhat8,redhat9,redhat10,suse15.2,suse15.3,suse15.4,suse15.5,suse15.6,suse15.7,ubuntu1604,ubuntu1804,ubuntu2004,ubuntu2204,ubuntu2404" | |
| - name: Custom command test | |
| uses: ./ | |
| with: | |
| gpg_key: 'https://download.newrelic.com/infrastructure_agent/gpg/newrelic-infra.gpg' | |
| repo_base_url: "http://nr-downloads-ohai-staging.s3-website-us-east-1.amazonaws.com/preview" | |
| package_name: "newrelic-agent-control" | |
| package_version: "1.12.0" | |
| version_command: "version" | |
| platforms: ubuntu2404 |