1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Try a different GCC version.

This commit is contained in:
Thomas Harte 2023-11-17 10:43:50 -05:00
parent a0ca5e6cdc
commit f4b1279342

View File

@ -10,7 +10,9 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Install dependencies - name: Install dependencies
run: sudo apt-get --allow-releaseinfo-change update && sudo apt-get --fix-missing install libsdl2-dev scons run:
- sudo apt-get --allow-releaseinfo-change update
- sudo apt-get --fix-missing install gcc-10 libsdl2-dev scons
- name: Make - name: Make
working-directory: OSBindings/SDL working-directory: OSBindings/SDL
run: scons -j$(nproc --all) run: scons -j$(nproc --all)