Skip to content

Commit

Permalink
ci: use macOS 14 as macOS 12 is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
XVilka committed Dec 10, 2024
1 parent c14b748 commit 57be901
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-2019, macos-12]
os: [ubuntu-22.04, windows-2019, macos-14]

steps:
- name: Checkout rz-bindgen
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt update
sudo apt-get --assume-yes install cmake swig pkg-config clang libclang-dev llvm wget unzip python3-wheel python3-setuptools build-essential python3-pip && sudo pip3 install meson ninja
sudo apt-get --assume-yes install cmake swig pkg-config clang libclang-dev llvm wget unzip python3-wheel python3-setuptools build-essential python3-pip && sudo pip3 install --break-system-packages meson ninja
- name: Install rizin
run: |
Expand Down
2 changes: 1 addition & 1 deletion cibw_before_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -ex

# Install deps
pip3 install meson ninja meson-python build
pip3 install --break-system-packages meson ninja meson-python build

if command -v apt; then
set +e
Expand Down

0 comments on commit 57be901

Please sign in to comment.