From c61e0ae252b93c637afe6c46b8221b1f072b72bb Mon Sep 17 00:00:00 2001 From: Greg Sleap Date: Sun, 28 Mar 2021 18:30:17 +0800 Subject: [PATCH] Another attempt with cfitsio and macosx... --- .github/workflows/test_macos.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_macos.yml b/.github/workflows/test_macos.yml index 00bad0a..fe7647a 100644 --- a/.github/workflows/test_macos.yml +++ b/.github/workflows/test_macos.yml @@ -20,7 +20,12 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: stable - override: true + override: true + + - name: Uninstall curl and install cfitsio + run: | + brew uninstall --ignore-dependencies curl + brew install cfitsio - - name: Run tests - run: MWALIB_LINK_STATIC_CFITSIO=1 cargo test --features cfitsio-static --release --verbose + - name: Run tests + run: MWALIB_LINK_STATIC_CFITSIO=1 cargo test --release --verbose