Load shcore at runtime and fallback if newer DPI funcs are unavailable #10
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: C/C++ CI | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: apt install mingw | |
| run: sudo apt update && sudo apt install -y gcc-mingw-w64-i686 | |
| - uses: actions/checkout@v4 | |
| - name: make | |
| run: make | |
| - uses: actions/upload-artifact@v4.6.0 | |
| with: | |
| name: ffrunner | |
| path: ffrunner.exe |