Skip to content

chore: update license #607

chore: update license

chore: update license #607

# 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