Fix Atari linking #56
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: | |
| - adam | |
| - apple2 | |
| - atari | |
| - c64 | |
| - coco | |
| # - msdos # MSDOS doesn't seem to build yet | |
| container: | |
| image: fozztexx/defoogi:1.4.2 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: make ${{ matrix.platform }}/r2r | |
| - name: Upload artifact for ${{ matrix.platform }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.platform }} | |
| path: r2r/${{ matrix.platform }}/** |