add hotkeys for changing disks #254
Workflow file for this run
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: | |
- master | |
- develop | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
RALibretro-Win32: | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install MSBuild | |
uses: microsoft/[email protected] | |
- name: Install Windows SDK 8.1 | |
run: choco install windows-sdk-8.1 | |
- name: Build | |
run: msbuild.exe RALibretro.sln -p:Configuration=Release -p:Platform=x86 | |
RALibretro-Win64: | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install MSBuild | |
uses: microsoft/[email protected] | |
- name: Install Windows SDK 8.1 | |
run: choco install windows-sdk-8.1 | |
- name: Build | |
run: msbuild.exe RALibretro.sln -p:Configuration=Release -p:Platform=x64 | |
RALibretro-Win32-cross-compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install gcc-multilib # bits/libc-header-start.h | |
- name: Install MinGW | |
uses: egor-tensin/setup-mingw@v2 | |
- name: Build | |
run: make ARCH=x86 | |
RALibretro-Win64-cross-compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install gcc-multilib # bits/libc-header-start.h | |
- name: Install MinGW | |
uses: egor-tensin/setup-mingw@v2 | |
- name: Build | |
run: make ARCH=x64 | |
RAHasher-linux-x86: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install gcc-multilib g++-multilib # bits/libc-header-start.h, bits/c++config.h | |
- name: Build | |
run: make ARCH=x86 HAVE_CHD=1 -f Makefile.RAHasher | |
- name: Zip | |
if: startsWith(github.ref, 'refs/tags/') | |
run: make ARCH=x86 HAVE_CHD=1 -f Makefile.RAHasher zip | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
draft: true | |
files: RAHasher*.zip | |
RAHasher-linux-x64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install gcc-multilib # bits/libc-header-start.h | |
- name: Build | |
run: make ARCH=x64 HAVE_CHD=1 -f Makefile.RAHasher | |
- name: Zip | |
if: startsWith(github.ref, 'refs/tags/') | |
run: make ARCH=x64 HAVE_CHD=1 -f Makefile.RAHasher zip | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
draft: true | |
files: RAHasher*.zip |