Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix mac build #832

Merged
merged 3 commits into from
Jun 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/build_and_deploy_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,23 @@ jobs:
with:
python-version: "3.10"

- uses: conda-incubator/setup-miniconda@v2
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
miniforge-version: latest
activate-environment: nwb-guide
environment-file: environments/environment-MAC-apple-silicon.yml
auto-activate-base: false
use-mamba: true

- uses: actions/setup-node@v3
- name: Create and activate environment
run: mamba env update --name nwb-guide --file environments/environment-MAC-apple-silicon.yml

- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: 20

- name: Install package.json modules and their dependencies
- name: Install package.json modules and their dependencies (not via `npm ci`)
run: npm install --verbose

- name: Remove bad sonpy file (might make Spike2 format unusable on Mac - should exclude from selection)
Expand Down
Loading