Skip to content

Commit

Permalink
try fixing windows build on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jornbr committed Nov 16, 2024
1 parent 8e73079 commit d8b2e19
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,14 @@ jobs:
auto-update-conda: true
environment-file: environment.yml
activate-environment: eat
- name: Compile
- name: Compile (Linux, Mac)
run: source ./install
if: matrix.os != 'windows-latest'
- name: Compile (Windows)
run:
conda instal -c conda-forge ninja
source ./install -G Ninja
if: matrix.os == 'windows-latest'
# - name: Run 2d test case
# run: |
# source ${CONDA}/etc/profile.d/conda.sh
Expand Down

0 comments on commit d8b2e19

Please sign in to comment.