forked from recastnavigation/recastnavigation
-
Notifications
You must be signed in to change notification settings - Fork 0
103 lines (79 loc) · 2.75 KB
/
Copy pathTests.yaml
File metadata and controls
103 lines (79 loc) · 2.75 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Tests
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
macos-tests:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup SDL2
uses: ./.github/actions/setup-sdl2-macos
- name: Download & install premake
working-directory: RecastDemo
run: |
curl -L -o premake.tar.gz https://github.com/premake/premake-core/releases/download/v5.0.0-beta8/premake-5.0.0-beta8-macosx.tar.gz
tar -xzf premake.tar.gz
rm premake.tar.gz
chmod 777 ./premake5
- name: Run premake
working-directory: RecastDemo
run: ./premake5 xcode4
- name: Build Unit Tests With Xcode
working-directory: RecastDemo/Build/xcode4/
run: xcodebuild -scheme Tests -configuration Debug -project Tests.xcodeproj build
- name: Run unit tests
working-directory: RecastDemo/Bin
run: ./Tests --verbosity high --success
linux-tests:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Setup SDL2
uses: ./.github/actions/setup-sdl2-linux
- name: Install clang
run: |
sudo apt-get install -y clang
clang --version
- name: Download & Install premake
working-directory: RecastDemo
run: |
curl -L -o premake.tar.gz https://github.com/premake/premake-core/releases/download/v5.0.0-beta8/premake-5.0.0-beta8-linux.tar.gz
tar -xzf premake.tar.gz
rm premake.tar.gz
chmod 777 ./premake5
- name: Run premake
working-directory: RecastDemo
run: ./premake5 --cc=clang gmake
- name: Build
working-directory: RecastDemo/Build/gmake
run: make config=debug verbose=true
- name: Run Tests
working-directory: RecastDemo/Bin
run: ./Tests --verbosity high --success
windows-tests:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
- name: Setup SDL2
uses: ./.github/actions/setup-sdl2-windows
- name: Download and Install Premake
working-directory: RecastDemo
shell: pwsh
run: |
(new-object System.Net.WebClient).DownloadFile("https://github.com/premake/premake-core/releases/download/v5.0.0-beta8/premake-5.0.0-beta8-windows.zip","${{github.workspace}}/RecastDemo/premake.zip")
tar -xf premake.zip
del premake.zip
- name: Run Premake
working-directory: RecastDemo
run: ./premake5.exe vs2022
- name: Build
working-directory: RecastDemo/Build/vs2022
run: msbuild Tests.vcxproj -property:Configuration=Debug -property:Platform=x64
- name: Run Tests
working-directory: RecastDemo/Bin/
run: ./Tests.exe --verbosity high --success