symlink rom instead of copying it #297
This file contains 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: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: update deps | |
run: sudo apt-get -y update | |
- name: install deps | |
run: sudo apt install pkgconf libreadline-dev libsdl1.2-compat-dev libsdl-gfx1.2-dev libx11-dev libxext-dev liblua5.4-dev | |
- name: make standard | |
run: make clean-all && make | |
- name: make without sdl | |
run: make clean-all && make WITH_SDL=no | |
- name: make without x11 | |
run: make clean-all && make WITH_X11=no | |
- name: make with neither x11 nor sdl | |
run: make clean-all && make WITH_X11=no WITH_SDL=no |