forked from 3DRadSpace/3D_Rad_Space
-
-
Notifications
You must be signed in to change notification settings - Fork 1
29 lines (26 loc) · 773 Bytes
/
Copy pathcpp-test-windows-x64.yml
File metadata and controls
29 lines (26 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: C++ Windows-x64 Google Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: Build 3DRadSpace
uses: ./.github/workflows/cmake-windows-x64.yml
test:
runs-on: [windows-latest, x64, gpu, self-hosted]
needs: build
steps:
- name: Copy Asset folders
shell: cmd
working-directory: ${{ github.workspace }}
run: xcopy 3DRadSpace\Data\ build\Release\Data\ /s /e /h /y
- name: Copy Test folders
shell: cmd
working-directory: ${{ github.workspace }}
run: xcopy 3DRadSpace\Testing\ build\Release\Testing\ /s /e /h /y
- name: Run tests
shell: cmd
working-directory: ${{ github.workspace }}\build\Release\
run: 3DRadSpace.Tests.exe