Merge pull request #1 from sbscholz/main #31
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: [push, pull_request] | |
| jobs: | |
| build: | |
| 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 dependencies | |
| run: apt install -y libjpeg-dev libpng-dev | |
| - name: Build | |
| run: make |