px68k-libretro Windows x86_64 #408
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: px68k-libretro Windows x86_64 | |
on: | |
push: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 2 * * *' # run at 2 AM UTC | |
watch: # this is a hack that lets repo owners trigger a build by starring | |
types: [started] | |
if: github.actor == github.event.repository.owner.login | |
jobs: | |
Windows: | |
name: Build for Windows via cross-compile | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install needed packages | |
run: sudo apt install wget git build-essential mingw-w64 mingw-w64-x86-64-dev mingw-w64-tools | |
- name: Checkout source | |
run: git clone https://github.com/negativeExponent/px68k-libretro.git && cd px68k-libretro && git submodule update --init | |
- name: Check gcc version | |
run: | | |
/usr/bin/x86_64-w64-mingw32-gcc --version | |
/usr/bin/x86_64-w64-mingw32-g++ --version | |
- name: Build libretro core | |
working-directory: px68k-libretro | |
run: | | |
make -f Makefile.libretro CC=/usr/bin/x86_64-w64-mingw32-gcc CXX=/usr/bin/x86_64-w64-mingw32-g++ platform=win -j8 | |
strip -s px68k_libretro.dll | |
zip -9 ../px68k_libretro.dll.zip px68k_libretro.dll | |
- name: Create new release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
tag: Windows_64-bit | |
file: px68k_libretro.dll.zip | |
overwrite: true |