Skip to content

Commit d8fa1d2

Browse files
committed
Add a very dirty fix (with unexpected behavior when using CONFIG-=) to eliminate attempts to use non-system QuaZIP or QScinitilla when using the corresponding use_system options._*
1 parent 46403c3 commit d8fa1d2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/setup_environment.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,17 @@ jobs:
9797
submodules: recursive
9898
fetch-depth: 0
9999

100+
- name: Remove thirparty submodules
101+
run: |
102+
set -xeu
103+
if [[ "${{ inputs.qmake_extra }}" =~ "use_system_quazip" ]]; then
104+
rm -rf thirdparty/quazip
105+
fi
106+
if [[ "${{ inputs.qmake_extra }}" =~ "use_system_qscintilla2" ]]; then
107+
rm -rf thirdparty/qscintilla
108+
fi
109+
ls thirdparty
110+
100111
- name: Set up environment
101112
run: buildScripts/github/install.sh
102113
env:

0 commit comments

Comments
 (0)