nightly #917
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: nightly | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 5 * * *' | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: single-acceptance-job-per-repo | |
| jobs: | |
| integration: | |
| environment: account-admin | |
| runs-on: | |
| group: larger-runners | |
| labels: larger | |
| permissions: | |
| # Access to the integration testing infrastructure and JFrog package resolution. | |
| id-token: write | |
| # Create issues for nightly test failures. | |
| issues: write | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1 | |
| with: | |
| version: "0.11.2" | |
| checksum: "7ac2ca0449c8d68dae9b99e635cd3bc9b22a4cb1de64b7c43716398447d42981" | |
| - name: Setup for JFrog | |
| uses: ./.github/actions/jfrog-auth | |
| - name: Run nightly tests | |
| uses: databrickslabs/sandbox/acceptance@3313d06ce86227537b3f37f5974f7eecb2a8e59a # acceptance/v0.4.4 | |
| with: | |
| vault_uri: ${{ secrets.VAULT_URI }} | |
| timeout: 2h | |
| create_issues: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| ARM_CLIENT_ID: ${{ secrets.ARM_CLIENT_ID }} | |
| ARM_TENANT_ID: ${{ secrets.ARM_TENANT_ID }} | |
| TEST_NIGHTLY: true |