Skip to content

Commit

Permalink
debug conda CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrohwer committed May 10, 2024
1 parent dd12505 commit 7285145
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-conda.yml
Expand Up @@ -18,10 +18,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.11'
# - uses: actions/setup-python@v5
# name: Install Python
# with:
# python-version: '3.11'

- name: (windows) Install rtools MinGW compilers
if: matrix.os == 'windows-latest'
Expand All @@ -43,17 +43,17 @@ jobs:

- name: Prepare conda environment
run: |
conda install mamba boa conda-verify anaconda-client
mamba update --all
conda install conda-verify anaconda-client
conda update --all
mkdir build_output
- name: (unix) Build packages for ${{ matrix.os }}
if: matrix.os != 'windows-latest'
run: conda mambabuild --no-anaconda-upload --output-folder ./build_output ./packaging/conda-unix
run: conda build --no-anaconda-upload --output-folder ./build_output ./packaging/conda-unix

- name: (windows) Build packages for ${{ matrix.os }}
if: matrix.os == 'windows-latest'
run: conda mambabuild --no-anaconda-upload --output-folder ./build_output ./packaging/conda-win
run: conda build --no-anaconda-upload --output-folder ./build_output ./packaging/conda-win

- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 7285145

Please sign in to comment.