Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Use qdarkstyle subrepo in macOS app #15054

Merged
merged 3 commits into from
Mar 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/installer-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,19 @@ jobs:
run: |
SPK_REPO=${GITHUB_WORKSPACE}/external-deps/spyder-kernels
PLS_REPO=${GITHUB_WORKSPACE}/external-deps/python-language-server
QDK_REPO=${GITHUB_WORKSPACE}/external-deps/qdarkstyle
SITE_PACKAGES=`python3.9 -c 'import site; print(site.getsitepackages()[0])'`
python3.9 -m pip uninstall -q -y spyder-kernels python-language-server
python3.9 -m pip uninstall -q -y spyder-kernels python-language-server qdarkstyle
cd ${SPK_REPO}
python3.9 setup.py develop --no-deps --install-dir=${SITE_PACKAGES}
cd ${PLS_REPO}
python3.9 setup.py develop --no-deps --install-dir=${SITE_PACKAGES}
cd ${QDK_REPO}
python3.9 setup.py develop --no-deps --install-dir=${SITE_PACKAGES}
- name: Show Build Environment
run: |
python3.9 -V -V
python3.9 -m pip list
- name: Build Application Bundle
run: python3.9 setup.py ${LITE_FLAG} --dist-dir ${DISTDIR}
- name: Build Disk Image
Expand Down