fix potential null pointer dereference in grenade model check by vali… #345
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS CI (Xcode) | |
on: | |
push | |
jobs: | |
build: | |
name: arm64-universal | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: macOS | |
if: runner.os == 'macOS' | |
run: | | |
cd MacOSX | |
./build-macos.sh | |
- name: Upload macOS artifact | |
uses: actions/upload-artifact@v4 | |
if: runner.os == 'macOS' | |
with: | |
name: QSS-M | |
path: | | |
MacOSX/build/Release/*.zip |