macos: Set minimum version to 10.15 (Catalina) #9
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: Ubuntu CI | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| fetch-depth: 0 | |
| - name: Install SDL2 | |
| run: | | |
| sudo apt update | |
| sudo apt install libsdl2-dev | |
| - name: Build Iris | |
| run: | | |
| git fetch --all --tags | |
| ./setup_gl3w.sh | |
| make | |
| - name: Pack executable | |
| run: | | |
| chmod +x ./bin/iris | |
| mkdir dist | |
| mv ./bin/iris ./dist | |
| mv ./res ./dist | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: iris-ubuntu-latest | |
| path: ./dist |