Upgraded Xcode to 14.3.1 (there is no 13 available anymore) #3
This file contains hidden or 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: darwin-brew-gcc14 | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| BUILD_TYPE: Release | |
| jobs: | |
| build: | |
| runs-on: macos-13 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '14.3.1' | |
| - name: Install Tools | |
| run: | | |
| brew update | |
| brew install gcc@14 make automake autoconf perl curl coreutils bash | |
| - name: Compile | |
| run: ./compile.bash darwin-brew-gcc14 |