Skip to content

Commit

Permalink
Correctly upgrade pip in hooli CI/CD
Browse files Browse the repository at this point in the history
Summary:
For reasons that are not entirely clear to me, the previous command was leaving pip on 20.0.2 and not actually upgrading it.

Test Plan: Should now build and deploy without CI/CD hack
  • Loading branch information
gibsondan committed Aug 28, 2024
1 parent fe8a6d4 commit c55cbec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-dagster-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ jobs:
- name: Prepare dbt project
if: steps.prerun.outputs.result != 'skip'
run: |
pip install pip --upgrade;
pip install dagster-dbt dagster-cloud dbt-core dbt-duckdb dbt-snowflake grpcio-health-checking==1.64.3 --upgrade --upgrade-strategy eager;
python -m pip install pip --upgrade;
pip install dagster-dbt dagster-cloud dbt-core dbt-duckdb dbt-snowflake --upgrade --upgrade-strategy eager;
make deps
dagster-dbt project prepare-and-package --file hooli_data_eng/project.py
dagster-cloud ci dagster-dbt project manage-state --file hooli_data_eng/project.py --source-deployment data-eng-prod
Expand Down

0 comments on commit c55cbec

Please sign in to comment.