chore: update license #608
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
# SPDX-License-Identifier: AGPL-3.0-or-later OR Commercial | |
name: Nightly Testing | |
on: | |
schedule: | |
- cron: '0 6 * * *' # Runs at midnight Mountain every day | |
pull_request: | |
paths: | |
- tasks/iac.yaml | |
- .github/workflows/test-eks.yaml | |
- .github/workflows/test-rke2.yaml | |
- .github/bundles/eks/* | |
- .github/bundles/rke2/* | |
- .github/test-infra/aws/eks/* | |
- .github/test-infra/aws/rke2/* | |
# Abort prior jobs in the same workflow / PR | |
concurrency: | |
group: test-eks-dev-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
nightly-testing-eks: | |
name: Test Core on EKS | |
uses: ./.github/workflows/test-eks.yaml | |
strategy: | |
matrix: | |
flavor: [upstream, registry1, unicorn] | |
fail-fast: false | |
with: | |
flavor: ${{ matrix.flavor }} | |
secrets: inherit | |
nightly-testing-rke2: | |
name: Test Core on RKE2 | |
uses: ./.github/workflows/test-rke2.yaml | |
strategy: | |
matrix: | |
flavor: [upstream, registry1, unicorn] | |
fail-fast: false | |
with: | |
flavor: ${{ matrix.flavor }} | |
secrets: inherit |