v2 Nightly code check #374
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: v2 Nightly code check | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 3 * * *' # 3 am UTC every day | |
jobs: | |
code-check: | |
uses: ./.github/workflows/code-check.yml | |
unit-tests: | |
uses: ./.github/workflows/unit-tests.yml | |
secrets: | |
GIST_PAT: ${{ secrets.GIST_PAT }} | |
security-scan: | |
needs: [unit-tests] | |
uses: ./.github/workflows/security-scan.yml | |
secrets: | |
FOSSA_TOKEN: ${{ secrets.FOSSA_TOKEN }} | |
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false # finish all jobs even if one fails | |
max-parallel: 2 | |
matrix: | |
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | |
python-version: ['3.8', '3.9', '3.10'] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install ".[dev]" | |
- name: Unit test with pytest | |
run: | | |
pytest tests/unit | |
- name: Setup database and engine | |
id: setup | |
uses: firebolt-db/integration-testing-setup@v2 | |
with: | |
firebolt-client-id: ${{ secrets.FIREBOLT_CLIENT_ID_STG_NEW_IDN }} | |
firebolt-client-secret: ${{ secrets.FIREBOLT_CLIENT_SECRET_STG_NEW_IDN }} | |
api-endpoint: "api.staging.firebolt.io" | |
account: ${{ vars.FIREBOLT_ACCOUNT }} | |
db_suffix: ${{ format('{0}_{1}', matrix.os, matrix.python-version) }} | |
- name: Run integration tests | |
env: | |
SERVICE_ID: ${{ secrets.FIREBOLT_CLIENT_ID_STG_NEW_IDN }} | |
SERVICE_SECRET: ${{ secrets.FIREBOLT_CLIENT_SECRET_STG_NEW_IDN }} | |
DATABASE_NAME: ${{ steps.setup.outputs.database_name }} | |
ENGINE_NAME: ${{ steps.setup.outputs.engine_name }} | |
STOPPED_ENGINE_NAME: ${{ steps.setup.outputs.stopped_engine_name }} | |
ACCOUNT_NAME: ${{ vars.FIREBOLT_ACCOUNT }} | |
API_ENDPOINT: "api.staging.firebolt.io" | |
run: | | |
pytest --timeout_method "thread" -o log_cli=true -o log_cli_level=WARNING --junit-xml=report/junit.xml tests/integration -k "not V1" | |
- name: Slack Notify of failure | |
if: failure() | |
id: slack | |
uses: firebolt-db/action-slack-nightly-notify@v1 | |
with: | |
os: ${{ matrix.os }} | |
programming-language: Python | |
language-version: ${{ matrix.python-version }} | |
notifications-channel: 'ecosystem-ci-notifications' | |
slack-api-key: ${{ secrets.SLACK_BOT_TOKEN }} |