Important fix; MSW matches GLFW where GL Options.version() specifies … #167
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: Xcode macOS | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: macos-13 | |
| strategy: | |
| matrix: | |
| config: [Debug, Release] | |
| steps: | |
| - name: Clone | |
| uses: actions/checkout@v3 | |
| - name: Build | |
| working-directory: ${{github.workspace}} | |
| run: xcodebuild -project proj/xcode/cinder.xcodeproj -target cinder -configuration ${{matrix.config}} | |
| - name: Build Unit Tests | |
| working-directory: ${{github.workspace}}/test/unit | |
| run: xcodebuild -project xcode/UnitTests.xcodeproj -configuration ${{matrix.config}} | |
| - name: Run Unit Tests | |
| working-directory: ${{github.workspace}}/test/unit | |
| run: ./xcode/build/${{matrix.config}}/CinderUnitTests |