Skip to content

Commit 71ce453

Browse files
committed
Trying to switch to mamba for Linux build as well
1 parent 3d9db18 commit 71ce453

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/pyinstaller-builds-actions.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,22 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- uses: conda-incubator/setup-miniconda@v2
1717
with:
18-
miniconda-version: "latest"
18+
# miniconda-version: "latest"
19+
miniforge-version: latest
1920
auto-update-conda: true
2021
python-version: 3.8
2122
activate-environment: test
2223
- name: Install CadQuery and pyinstaller
2324
shell: bash --login {0}
2425
run: |
25-
conda info
26-
conda install -c cadquery -c conda-forge cadquery=master python=3.8
27-
conda install -c conda-forge pyinstaller
26+
mamba info
27+
mamba install -c cadquery -c conda-forge cadquery=master python=3.8
28+
mamba install -c conda-forge pyinstaller
2829
pip install path
2930
- name: Run build
3031
shell: bash --login {0}
3132
run: |
32-
conda info
33+
mamba info
3334
pyinstaller cq-cli_pyinstaller.spec ${{ github.event.inputs.type }}
3435
- uses: actions/upload-artifact@v2
3536
with:

0 commit comments

Comments
 (0)