Skip to content

Commit

Permalink
Drop homebrew macos job from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro committed Nov 5, 2024
1 parent df3fc4f commit 3ec48ec
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
build_type: [Debug, Release]
os: [ubuntu-latest, macOS-latest, windows-latest]
os: [ubuntu-latest, windows-latest]
float: [ON, OFF]
fail-fast: false

Expand Down Expand Up @@ -64,11 +64,6 @@ jobs:
cd C:/robotology/vcpkg
./vcpkg.exe install --triplet x64-windows catch2
- name: Dependencies [macOS]
if: matrix.os == 'macOS-latest'
run: |
brew install eigen
- name: Dependencies [Ubuntu]
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down Expand Up @@ -98,8 +93,8 @@ jobs:
cmake --build . --config ${{ matrix.build_type }} --target INSTALL
- name: Source-based Dependencies [Ubuntu/macOS]
if: steps.cache-source-deps.outputs.cache-hit != 'true' && (matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest')
- name: Source-based Dependencies [Ubuntu]
if: steps.cache-source-deps.outputs.cache-hit != 'true' && (matrix.os == 'ubuntu-latest')
shell: bash
run: |
# osqp
Expand Down

0 comments on commit 3ec48ec

Please sign in to comment.