Skip to content

Commit

Permalink
macOS CI: fix failing 11, add 13 (#189)
Browse files Browse the repository at this point in the history
* Skip unnecessary upgrades
* Add macOS 13 to CI
  • Loading branch information
sarlinpe authored Oct 12, 2023
1 parent 0ab4395 commit de3ce4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-11, macos-12 ]
os: [ macos-11, macos-12, macos-13 ]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
8 changes: 1 addition & 7 deletions package/build-wheels-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ brew remove swiftlint
brew remove node@18

brew update
brew upgrade
brew install wget cmake

for PYTHON_VERSION in ${PYTHON_VERSIONS[@]}; do
brew install --force "python@${PYTHON_VERSION}"
Expand All @@ -28,6 +26,7 @@ done

brew install \
git \
wget \
cmake \
eigen \
freeimage \
Expand All @@ -38,17 +37,12 @@ brew install \
suite-sparse \
ceres-solver \
glew \
cgal \
sqlite3 \
libomp \
llvm \
boost \
lz4

brew info gcc
brew upgrade gcc
brew info gcc

# Install Boost
#mkdir -p boost
#cd boost
Expand Down

0 comments on commit de3ce4c

Please sign in to comment.