Skip to content

Commit

Permalink
Remove macOs from the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicogene authored Jan 17, 2024
1 parent 0e1a344 commit 7de39a7
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
build_type: [Release]
os: [windows-latest, ubuntu-latest, macOS-latest]
os: [windows-latest, ubuntu-latest]

steps:
- uses: actions/checkout@main
Expand Down Expand Up @@ -67,12 +67,6 @@ jobs:
qtbase5-dev qtdeclarative5-dev qtmultimedia5-dev libtinyxml-dev libgsl-dev wget curl autoconf \
autogen automake libtool mlocate libopencv-dev
- name: Dependencies [macOS]
if: matrix.os == 'macOS-latest'
run: |
brew update
brew upgrade
brew install ace cmake eigen gsl ipopt opencv pkg-config qt5
- name: Source-based Dependencies [Windows]
if: matrix.os == 'windows-latest'
shell: bash
Expand Down Expand Up @@ -111,7 +105,7 @@ jobs:
-DENABLE_icubmod_gazecontrollerclient=ON ..
cmake --build . --config ${{ matrix.build_type }} --target INSTALL
- name: Source-based Dependencies [Ubuntu/macOS]
- name: Source-based Dependencies [Ubuntu]
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest'
shell: bash
run: |
Expand Down Expand Up @@ -160,7 +154,7 @@ jobs:
-DCMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/install -DCMAKE_INSTALL_PREFIX=${GITHUB_WORKSPACE}/install \
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ..
- name: Configure [Ubuntu/macOS]
- name: Configure [Ubuntu]
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest'
shell: bash
run: |
Expand Down

0 comments on commit 7de39a7

Please sign in to comment.