Skip to content

Commit

Permalink
fix macos ci install deps
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Nov 13, 2024
1 parent b6c5cf2 commit b55cc34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/macos_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:
uses: davidB/rust-cargo-make@v1
- name: Install Dependencies
run: |
# cargo make install_deps # doesn't work
brew install casacore/tap/casacore mwatelescope/tap/aoflagger
cargo make install_deps
- name: Run tests
run: |
cargo make test_no_default
Expand Down
4 changes: 3 additions & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ dependencies = ["linux_install_aoflagger"]

[tasks.mac_install_deps]
script = """
brew install casacore/tap/casacore mwatelescope/tap/aoflagger
INSTALL="brew install"
INSTALL="arch -$(arch) $INSTALL" # ???
$INSTALL mwatelescope/tap/aoflagger
"""

[tasks.install_deps]
Expand Down

0 comments on commit b55cc34

Please sign in to comment.