mirror of
https://github.com/xemu-project/nv2a_vsh_cpu.git
synced 2024-11-23 01:39:38 +00:00
Adds basic build & test workflow.
This commit is contained in:
parent
f60fadfa4c
commit
3fb1cfb68e
37
.github/workflows/build.yml
vendored
Normal file
37
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths-ignore:
|
||||||
|
- '.github/**'
|
||||||
|
- '!.github/workflows/**'
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '.github/**'
|
||||||
|
- '!.github/workflows/**'
|
||||||
|
- 'README.md'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
submodules: recursive
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: sudo apt-get update && sudo apt-get install -yq libboost-test-dev
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
mkdir build
|
||||||
|
cmake -Bbuild -S.
|
||||||
|
cmake --build build/ --target all
|
||||||
|
ls build
|
||||||
|
- name: Test Operations
|
||||||
|
run: build/operations_tests
|
||||||
|
- name: Test Disassembler
|
||||||
|
run: build/disassembler_tests
|
||||||
|
- name: Test Emulator
|
||||||
|
run: build/emulator_tests
|
@ -16,7 +16,7 @@ option(nv2a_vsh_cpu_UNIT_TEST "Enable nv2a_vsh_cpu's various unit tests" ON)
|
|||||||
if (nv2a_vsh_cpu_UNIT_TEST)
|
if (nv2a_vsh_cpu_UNIT_TEST)
|
||||||
include(FindPkgConfig)
|
include(FindPkgConfig)
|
||||||
find_package(
|
find_package(
|
||||||
Boost 1.74
|
Boost 1.71
|
||||||
COMPONENTS
|
COMPONENTS
|
||||||
unit_test_framework
|
unit_test_framework
|
||||||
REQUIRED
|
REQUIRED
|
||||||
|
Loading…
Reference in New Issue
Block a user