Skip to content
Merged

CI #123

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:

jobs:
build:
runs-on: macos-14
runs-on: macos-15
env:
TAG_NAME: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.target_tag || github.ref_name }}
steps:
Expand All @@ -38,7 +38,8 @@ jobs:
./toolchains
- name: Install Development Environment
run: |
brew install ninja meson mingw-w64
brew install mingw-w64
pip3 install meson==1.10.0 --break-system-packages
- name: Configuration
if: ${{ steps.cache-toolchains.outputs.cache-hit != 'true' }}
run: ./configure.sh
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
build:
runs-on: macos-14
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -27,7 +27,8 @@ jobs:
./toolchains
- name: Install Development Environment
run: |
brew install ninja meson
brew install mingw-w64
pip3 install meson==1.10.0 --break-system-packages
- name: Configuration
if: ${{ steps.cache-toolchains.outputs.cache-hit != 'true' }}
run: ./configure.sh --native
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
build:
runs-on: macos-14
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -27,7 +27,8 @@ jobs:
./toolchains
- name: Install Development Environment
run: |
brew install ninja meson mingw-w64
brew install mingw-w64
pip3 install meson==1.10.0 --break-system-packages
- name: Configuration
if: ${{ steps.cache-toolchains.outputs.cache-hit != 'true' }}
run: ./configure.sh
Expand Down