add rc_client_set_hash_callbacks #1039
Workflow file for this run
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,develop ] | |
pull_request: | |
branches: [ master,develop ] | |
jobs: | |
linux-x86: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install gcc-multilib # bits/libc-header-start.h | |
- name: Build | |
run: make ARCH=x86 BUILD=c89 test | |
working-directory: test | |
- name: Run tests | |
run: ./test | |
working-directory: test | |
linux-x64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install valgrind gcc-multilib # bits/libc-header-start.h | |
- name: Build | |
run: make ARCH=x64 BUILD=c89 test | |
working-directory: test | |
- name: Run tests | |
run: ./test | |
working-directory: test | |
- name: Valgrind | |
run: make ARCH=x64 BUILD=c89 valgrind | |
working-directory: test | |
# RetroArch compiles with gcc-8, gnu99, and a different set of warnings. | |
# Attempt to catch issues caused by those discrepencies. | |
linux-x64-retroarch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install valgrind gcc-multilib # bits/libc-header-start.h | |
- name: Check ctype calls | |
run: make ARCH=x64 BUILD=retroarch check_ctype | |
working-directory: test | |
- name: Build | |
run: make ARCH=x64 BUILD=retroarch test | |
working-directory: test | |
- name: Run tests | |
run: ./test | |
working-directory: test | |
- name: Valgrind | |
run: make ARCH=x64 BUILD=retroarch valgrind | |
working-directory: test | |
linux-x64-nohash: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install valgrind gcc-multilib # bits/libc-header-start.h | |
- name: Build HAVE_HASH=0 | |
run: make ARCH=x64 BUILD=c89 HAVE_HASH=0 test | |
working-directory: test | |
- name: Run tests HAVE_HASH=0 | |
run: ./test | |
working-directory: test | |
- name: Build HAVE_HASH_ROMS=0 | |
run: make ARCH=x64 BUILD=c89 clean && make ARCH=x64 BUILD=c89 HAVE_HASH_ROMS=0 test | |
working-directory: test | |
- name: Run tests HAVE_HASH_ROMS=0 | |
run: ./test | |
working-directory: test | |
- name: Build HAVE_HASH_DISC=0 | |
run: make ARCH=x64 BUILD=c89 clean && make ARCH=x64 BUILD=c89 HAVE_HASH_DISC=0 test | |
working-directory: test | |
- name: Run tests HAVE_HASH_DISC=0 | |
run: ./test | |
working-directory: test | |
- name: Build HAVE_HASH_ZIP=0 | |
run: make ARCH=x64 BUILD=c89 clean && make ARCH=x64 BUILD=c89 HAVE_HASH_ZIP=0 test | |
working-directory: test | |
- name: Run tests HAVE_HASH_ZIP=0 | |
run: ./test | |
working-directory: test | |
- name: Build HAVE_HASH_ENCRYPTED=0 | |
run: make ARCH=x64 BUILD=c89 clean && make ARCH=x64 BUILD=c89 HAVE_HASH_ENCRYPTED=0 test | |
working-directory: test | |
- name: Run tests HAVE_HASH_ENCRYPTED=0 | |
run: ./test | |
working-directory: test | |
windows-x64-msbuild: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install MSBuild | |
uses: microsoft/[email protected] | |
- name: Build | |
run: msbuild.exe rcheevos-test.sln -t:rcheevos-test -p:Configuration=Release -p:Platform=x64 | |
working-directory: test | |
- name: Run tests | |
run: ./rcheevos-test.exe | |
working-directory: test/x64/Release | |
windows-x64-mingw: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
run: make ARCH=x64 BUILD=c89 CC=gcc test | |
working-directory: test | |
- name: Run tests | |
run: ./test.exe | |
working-directory: test |