Skip to content

libretro-fceumm Windows x86_64 #379

libretro-fceumm Windows x86_64

libretro-fceumm Windows x86_64 #379

Workflow file for this run

name: libretro-fceumm 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/libretro-fceumm.git && cd libretro-fceumm && git submodule update --init
- name: Build libretro core
working-directory: libretro-fceumm
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 fceumm_libretro.dll
zip -9 ../fceumm_libretro.dll.zip fceumm_libretro.dll
- name: Create new release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: Windows_64-bit
file: fceumm_libretro.dll.zip
overwrite: true