Fix breaking changes in recent dbt-fusion version #3866
Workflow file for this run
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: Test all warehouse platforms | |
| on: | |
| # For internal PRs (non-forks) - no approval needed, can test workflow changes immediately | |
| pull_request: | |
| branches: ["master"] | |
| # For fork PRs - requires approval before running (has access to secrets) | |
| pull_request_target: | |
| branches: ["master"] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| inputs: | |
| dbt-version: | |
| type: string | |
| required: false | |
| description: dbt's version to test with | |
| elementary-ref: | |
| type: string | |
| required: false | |
| description: Branch or tag to checkout for 'elementary' repository | |
| dbt-data-reliability-ref: | |
| type: string | |
| required: false | |
| description: Branch or tag to checkout for 'dbt-data-reliability' repository | |
| workflow_call: | |
| inputs: | |
| dbt-version: | |
| type: string | |
| required: false | |
| elementary-ref: | |
| type: string | |
| required: false | |
| dbt-data-reliability-ref: | |
| type: string | |
| required: false | |
| jobs: | |
| # Determine if this is a fork PR and skip if wrong trigger is used | |
| check-fork-status: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| is_fork: ${{ steps.check.outputs.is_fork }} | |
| should_skip: ${{ steps.check.outputs.should_skip }} | |
| steps: | |
| - name: Check if PR is from fork | |
| id: check | |
| run: | | |
| IS_FORK="false" | |
| SHOULD_SKIP="false" | |
| if [[ "${{ github.event_name }}" == "pull_request" || "${{ github.event_name }}" == "pull_request_target" ]]; then | |
| if [[ "${{ github.event.pull_request.head.repo.full_name }}" != "${{ github.repository }}" ]]; then | |
| IS_FORK="true" | |
| fi | |
| # Skip if: pull_request from fork (should use pull_request_target) OR pull_request_target from non-fork (should use pull_request) | |
| if [[ "${{ github.event_name }}" == "pull_request" && "$IS_FORK" == "true" ]]; then | |
| SHOULD_SKIP="true" | |
| elif [[ "${{ github.event_name }}" == "pull_request_target" && "$IS_FORK" == "false" ]]; then | |
| SHOULD_SKIP="true" | |
| fi | |
| fi | |
| echo "is_fork=$IS_FORK" >> $GITHUB_OUTPUT | |
| echo "should_skip=$SHOULD_SKIP" >> $GITHUB_OUTPUT | |
| # Approval gate for fork PRs (only runs once for all platforms) | |
| approve-fork: | |
| runs-on: ubuntu-latest | |
| needs: [check-fork-status] | |
| if: needs.check-fork-status.outputs.should_skip != 'true' && needs.check-fork-status.outputs.is_fork == 'true' | |
| environment: elementary_test_env | |
| steps: | |
| - name: Approved | |
| run: echo "Fork PR approved for testing" | |
| test: | |
| needs: [check-fork-status, approve-fork] | |
| if: | | |
| ! cancelled() && | |
| needs.check-fork-status.result == 'success' && | |
| needs.check-fork-status.outputs.should_skip != 'true' && | |
| (needs.check-fork-status.outputs.is_fork != 'true' || needs.approve-fork.result == 'success') | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| dbt-version: | |
| ${{ inputs.dbt-version && fromJSON(format('["{0}"]', inputs.dbt-version)) || | |
| fromJSON('["latest_official"]') }} | |
| warehouse-type: | |
| [ | |
| postgres, | |
| snowflake, | |
| bigquery, | |
| redshift, | |
| databricks_catalog, | |
| athena, | |
| trino, | |
| clickhouse, | |
| dremio, | |
| ] | |
| include: | |
| - dbt-version: "${{ inputs.dbt-version || 'latest_pre' }}" | |
| warehouse-type: postgres | |
| - dbt-version: "${{ inputs.dbt-version || 'fusion' }}" | |
| warehouse-type: snowflake | |
| - dbt-version: "${{ inputs.dbt-version || 'fusion' }}" | |
| warehouse-type: bigquery | |
| - dbt-version: "${{ inputs.dbt-version || 'fusion' }}" | |
| warehouse-type: redshift | |
| - dbt-version: "${{ inputs.dbt-version || 'fusion' }}" | |
| warehouse-type: databricks_catalog | |
| uses: ./.github/workflows/test-warehouse.yml | |
| with: | |
| warehouse-type: ${{ matrix.warehouse-type }} | |
| dbt-version: ${{ matrix.dbt-version }} | |
| elementary-ref: ${{ inputs.elementary-ref }} | |
| dbt-data-reliability-ref: ${{ inputs.dbt-data-reliability-ref || ((github.event_name == 'pull_request_target' || github.event_name == 'pull_request') && github.event.pull_request.head.sha) || '' }} | |
| secrets: inherit | |
| notify_failures: | |
| name: Notify Slack | |
| secrets: inherit | |
| needs: [test] | |
| if: | | |
| always() && | |
| ! contains(needs.test.result, 'success') && | |
| ! contains(needs.test.result, 'cancelled') && | |
| contains(github.event_name, 'schedule') && | |
| ! cancelled() | |
| uses: elementary-data/elementary/.github/workflows/notify_slack.yml@master | |
| with: | |
| result: "failure" | |
| run_id: ${{ github.run_id }} | |
| workflow_name: ${{ github.workflow }} |