From bdef45ed91337ab44c23abead10b8db6a8d4d2bf Mon Sep 17 00:00:00 2001 From: Rhys Mainwaring Date: Sun, 17 Dec 2023 23:18:06 +0000 Subject: [PATCH] CI: update macOS workflow - Remove workflow for macOS Sonoma. Signed-off-by: Rhys Mainwaring --- .../workflows/macos14-sonoma-build-tools.yml | 24 ----------- .github/workflows/macos14-sonoma-ci.yml | 42 ------------------- 2 files changed, 66 deletions(-) delete mode 100644 .github/workflows/macos14-sonoma-build-tools.yml delete mode 100644 .github/workflows/macos14-sonoma-ci.yml diff --git a/.github/workflows/macos14-sonoma-build-tools.yml b/.github/workflows/macos14-sonoma-build-tools.yml deleted file mode 100644 index 6ef838d..0000000 --- a/.github/workflows/macos14-sonoma-build-tools.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: macOS Sonoma Build Tools - -on: [pull_request] - -jobs: - macos-sonoma-ci: - runs-on: macos-14 - name: macOS Sonoma Build Tools - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Install Build Tools - run: | - pip3 install --user vcstool - pip3 install --user colcon-common-extensions - - - name: Check Build Tools - run: | - which pip3 - which python3 - python3 --version - export PATH=$PATH:/Users/runner/Library/Python/3.11/bin:/Users/runner/Library/Python/3.12/bin - colcon graph diff --git a/.github/workflows/macos14-sonoma-ci.yml b/.github/workflows/macos14-sonoma-ci.yml deleted file mode 100644 index 1f7f509..0000000 --- a/.github/workflows/macos14-sonoma-ci.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: macOS Sonoma CI - -on: [pull_request] - -jobs: - macos-sonoma-ci: - runs-on: macos-14 - name: macOS Sonoma CI - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Cache brew packages - id: cache-brew-packages - uses: actions/cache@v3 - with: - path: | - /usr/local/Cellar - /usr/local/Frameworks - /usr/local/Homebrew - /usr/local/bin - /usr/local/lib - /usr/local/opt - /usr/local/share - key: macos-build-cache-${{ hashFiles('./.github/scripts/brew_install_deps.sh') }} - - - name: Install brew packages - run: | - bash ./.github/scripts/brew_install_deps.sh - - - name: Install Build Tools - run: | - python3 -m pip install --user vcstool - python3 -m pip install --user colcon-common-extensions - - - name: Build Wave Sim - run: | - bash ./.github/scripts/macos_build.sh - - - name: Test Wave Sim - run: | - bash ./.github/scripts/macos_test.sh