Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/nightly-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ jobs:
secrets:
FOSSA_TOKEN: ${{ secrets.FOSSA_TOKEN }}
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
core:
strategy:
fail-fast: false # finish all jobs even if one fails
matrix:
# No windows support for core yet
# Macos is missing docker support
os: [ubuntu-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
uses: ./.github/workflows/integration-tests-core.yml
with:
os_name: ${{ matrix.os }}
python_version: ${{ matrix.python-version }}
sendSlackNotifications: true
tests:
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -65,7 +78,7 @@ jobs:
ACCOUNT_NAME: "firebolt"
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 V2"
pytest --timeout_method "thread" -o log_cli=true -o log_cli_level=WARNING --junit-xml=report/junit.xml tests/integration -k "not V2 and not core"

- name: Slack Notify of failure
if: failure()
Expand Down
15 changes: 14 additions & 1 deletion .github/workflows/nightly-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ jobs:
secrets:
FOSSA_TOKEN: ${{ secrets.FOSSA_TOKEN }}
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
core:
strategy:
fail-fast: false # finish all jobs even if one fails
matrix:
# No windows support for core yet
# Macos is missing docker support
os: [ubuntu-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
uses: ./.github/workflows/integration-tests-core.yml
with:
os_name: ${{ matrix.os }}
python_version: ${{ matrix.python-version }}
sendSlackNotifications: true
tests:
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -62,7 +75,7 @@ jobs:
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"
pytest --timeout_method "thread" -o log_cli=true -o log_cli_level=WARNING --junit-xml=report/junit.xml tests/integration -k "not V1 and not core"

- name: Slack Notify of failure
if: failure()
Expand Down
Loading