Skip to content

Commit

Permalink
attempt to fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
subhacom committed Nov 9, 2024
1 parent bf294b8 commit 15c8b44
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/pymoose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-14]
os: [ubuntu-latest, macos-14, windows-latest]
build_type: [Release]
c_compiler: [clang]
python-version: ["3.12"]
Expand All @@ -17,6 +17,11 @@ jobs:
- os: macos-14
brew: 20
steps:
- name: build-tools
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
winget install llvm
- name: mamba-setup
uses: mamba-org/setup-micromamba@v1
with:
Expand All @@ -25,7 +30,15 @@ jobs:
cache-downloads: true
create-args: >-
python=${{ matrix.python-version }}
pip
pkg-config
build
clang
meson
ninja
meson-python
hdf5
pybind11[global]
graphviz
pytables
numpy
Expand Down

0 comments on commit 15c8b44

Please sign in to comment.