Skip to content

Commit 9f90814

Browse files
committed
🚧 inspect conda on GitHub Actions runners
1 parent 4e93792 commit 9f90814

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/cdci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,16 @@ jobs:
152152
auto-update-conda: true
153153
python-version: ${{ matrix.python-version }}
154154
- name: Install VueGen GUI and pyinstaller
155-
run: python -m pip install ".[gui]" pyinstaller
155+
run: |
156+
conda info
157+
conda list
158+
python -m pip install ".[gui]" pyinstaller
159+
conda list
156160
- name: Build executable
157161
run: |
158162
cd gui
159163
pyinstaller -n vuegen_gui -D --collect-all pyvis --collect-all streamlit --collect-all st_aggrid --collect-all customtkinter --collect-all quarto_cli --collect-all jupyter_core --collect-all yaml --collect-all ipykernel --collect-all nbconvert --collect-all notebook --collect-all ipywidgets --collect-all jupyter_console --collect-all jupyter_client --add-data ../docs/example_data/Basic_example_vuegen_demo_notebook:example_data/Basic_example_vuegen_demo_notebook app.py
164+
conda info
160165
python copy_python_executable.py
161166
- name: Upload executable
162167
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)