Skip to content

Commit 7ee43ec

Browse files
authored
Fix broken build action (#17417)
* Whoops broke the build * Run the workflow on PR to verify (disable PR one) * Install JediLSP for Python 3 only * Undo pr check testing changes
1 parent 9463ae2 commit 7ee43ec

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@ jobs:
117117
# We need to have debugpy so that tests relying on it keep passing, but we don't need install_debugpy's logic in the test phase.
118118
python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/python --no-cache-dir --implementation py --no-deps --upgrade --pre debugpy
119119
120+
- name: Install Jedi LSP requirements
121+
run: python -m pip --disable-pip-version-check install -t ./pythonFiles/lib/jedilsp --no-cache-dir --implementation py --no-deps --upgrade -r ./jedils_requirements.txt
122+
if: startsWith(matrix.python, 3.)
123+
120124
- name: Install test requirements
121125
run: python -m pip install --upgrade -r build/test-requirements.txt
122126

0 commit comments

Comments
 (0)