Unverified Commit a2719716 authored by Matthias Diener's avatar Matthias Diener Committed by GitHub
Browse files

workaround for MacOS CI pocl failure (#30)

* workaround for MacOS CI pocl failure

* only update ld64
parent f2a4fff5
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -271,6 +271,14 @@ install_conda_deps()
  # (need observed with boxtree 2023-03-03 -AK)
  with_echo conda install --quiet --yes pip || true

  # FIXME: workaround until we address
  # https://github.com/conda-forge/pocl-feedstock/pull/96
  if [ $PLATFORM = "MacOSX" ]; then
    if conda list | grep -q ld64; then
      with_echo conda install --yes ld64=609
    fi
  fi

  with_echo conda list

  # Placeholder until github.com/conda-forge/qt-feedstock/issues/208 is fixed