Skip to content

Commit

Permalink
Add a very dirty fix (with unexpected behavior when using CONFIG-=) t…
Browse files Browse the repository at this point in the history
…o eliminate attempts to use non-system QuaZIP or QScinitilla when using the corresponding use_system options._*
  • Loading branch information
MinyazevR committed Jan 10, 2025
1 parent 46403c3 commit cd5e497
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/setup_environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,15 @@ jobs:
submodules: recursive
fetch-depth: 0

- name: Remove thirparty submodules
run: |
if [[ "${{ inputs.qmake_extra }}" =~ "use_system_quazip" ]]; then
rm -rf thirdparty/quazip/quazip
fi
if [[ "${{ inputs.qmake_extra }}" =~ "use_system_qscintilla2" ]]; then
rm -rf thirdparty/qscintilla
fi
- name: Set up environment
run: buildScripts/github/install.sh
env:
Expand Down

0 comments on commit cd5e497

Please sign in to comment.