From f7e195ce96bdb7879bcbc90720b72c063d951fb2 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Mon, 16 Oct 2023 13:09:27 -0700 Subject: [PATCH 1/2] Try dropping `CC` on macOS GHA builds Ideally this specification is not needed to pick up the right compiler on macOS. So try dropping it to see if things still work. --- .github/workflows/ci-osx.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci-osx.yaml b/.github/workflows/ci-osx.yaml index e76fe050..3189cc34 100644 --- a/.github/workflows/ci-osx.yaml +++ b/.github/workflows/ci-osx.yaml @@ -49,7 +49,6 @@ jobs: shell: "bash -l {0}" run: | conda activate env - export CC=clang python -m pip install -v -e .[test,msgpack,zfpy] - name: List installed packages From 9b79d2fac5878572e1a444d9013afa6c4614260c Mon Sep 17 00:00:00 2001 From: jakirkham Date: Mon, 16 Oct 2023 13:12:22 -0700 Subject: [PATCH 2/2] Disable AVX2 on macOS Lately there have been intermittent issues on macOS GHA building with AVX2 support on. So just turn it off. Hopefully this clears those errors. --- .github/workflows/ci-osx.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-osx.yaml b/.github/workflows/ci-osx.yaml index 3189cc34..3de464a0 100644 --- a/.github/workflows/ci-osx.yaml +++ b/.github/workflows/ci-osx.yaml @@ -49,6 +49,7 @@ jobs: shell: "bash -l {0}" run: | conda activate env + export DISABLE_NUMCODECS_AVX2="" python -m pip install -v -e .[test,msgpack,zfpy] - name: List installed packages