SDL3 #19
Workflow file for this run
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: Build | |
| on: [pull_request] | |
| jobs: | |
| build-ubuntu: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: sacbase/sac-compiler | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: 'recursive' | |
| - name: Configure sac2c | |
| run: cp -r /root/.sac2crc $HOME/.sac2crc | |
| - name: Install SDL3 | |
| run: apt install -y libsdl3-dev libsdl3-image-dev libsdl3-ttf-dev | |
| - name: Build | |
| run: make |