Fix clang Linux building #2
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 quickerNES core | |
on: | |
pull_request: | |
branches: [ "master" ] | |
paths: [ "quicknes/**" ] | |
push: | |
branches: [ "master" ] | |
paths: [ "quicknes/**" ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-quickernes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Getting submodule(s) | |
working-directory: ./quicknes | |
run: git submodule update --recursive --init core | |
- name: Building QuickerNES core (Linux) | |
working-directory: ./quicknes/make | |
run: make -j4; make install | |
- name: Upload quicknes core | |
uses: actions/upload-artifact@v4 | |
with: | |
name: quicknes-core | |
path: | | |
Assets/dll/libquicknes.so |