Xcode 16でビルドする #15
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo xcode-select -s /Applications/Xcode_14.1.app | |
- run: make debug | |
working-directory: platform/mac | |
test: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo xcode-select -s /Applications/Xcode_14.1.app | |
- run: make test | |
working-directory: platform/mac | |
release: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo xcode-select -s /Applications/Xcode_14.1.app | |
- run: make release | |
working-directory: platform/mac |