Skip to content

Commit

Permalink
Fixing the libsasl2 installation in Spark dependencies (#71)
Browse files Browse the repository at this point in the history
 Fixing the libsasl2 installation
  • Loading branch information
nssalian authored Mar 3, 2023
2 parents 050472f + a83a251 commit 8b85295
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ jobs:
- name: "Install Spark Dependencies"
if: ${{ contains(github.repository, 'dbt-labs/dbt-spark') }}
run: |
sudo apt-get update
sudo apt-get install libsasl2-dev
- name: "Install Python Dependencies"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release-prep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ jobs:
- name: "Install Spark Dependencies"
if: ${{ contains(github.repository, 'dbt-labs/dbt-spark') }}
run: |
sudo apt-get update
sudo apt-get install libsasl2-dev
- name: "Add Homebrew To PATH"
Expand Down Expand Up @@ -427,6 +428,7 @@ jobs:
- name: "Install Spark Dependencies"
if: ${{ contains(github.repository, 'dbt-labs/dbt-spark') }}
run: |
sudo apt-get update
sudo apt-get install libsasl2-dev
- name: "Set up Python - ${{ env.PYTHON_TARGET_VERSION }}"
Expand Down Expand Up @@ -490,6 +492,7 @@ jobs:
- name: "Install Spark Dependencies"
if: ${{ contains(github.repository, 'dbt-labs/dbt-spark') }}
run: |
sudo apt-get update
sudo apt-get install libsasl2-dev
- name: "Set up Python - ${{ env.PYTHON_TARGET_VERSION }}"
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,6 @@ dmypy.json

# Cython debug symbols
cython_debug/

# pycharm
.idea/

0 comments on commit 8b85295

Please sign in to comment.