-
Notifications
You must be signed in to change notification settings - Fork 331
170 lines (140 loc) · 5.65 KB
/
build-linux.yml
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
name: Linux build
on: [push, pull_request]
jobs:
precheks:
runs-on: ubuntu-20.04
name: Linux -> Pre-checks
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
submodules: true # only need direct submodules
- name: DiligentCore format validation
working-directory: ${{github.workspace}}/DiligentCore/BuildTools/FormatValidation
shell: bash
run: ./validate_format_linux.sh
- name: DiligentTools format validation
working-directory: ${{github.workspace}}/DiligentTools/BuildTools/FormatValidation
shell: bash
run: ./validate_format_linux.sh
- name: DiligentFX format validation
working-directory: ${{github.workspace}}/DiligentFX/BuildTools/FormatValidation
shell: bash
run: ./validate_format_linux.sh
- name: DiligentSamples format validation
working-directory: ${{github.workspace}}/DiligentSamples/BuildTools/FormatValidation
shell: bash
run: ./validate_format_linux.sh
- name: Codespell
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
ignore_words_list: lod
skip: ./.git,./DiligentCore,./DiligentTools,./DiligentFX,./DiligentSamples
path: .
build:
needs: precheks
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
name: ["GCC", "Clang"]
build_type: ["Debug", "Release"]
cmake_args: ["-DDILIGENT_BUILD_TESTS=ON"]
include:
- name: "GCC"
cmake_generator: "Unix Makefiles"
cc: "gcc-9"
cxx: "g++-9"
- name: "Clang"
cmake_generator: "Ninja"
cc: "clang-12"
cxx: "clang++-12"
name: Linux -> ${{ matrix.name }}-x64, ${{ matrix.build_type }}
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Clone Test Data
if: success()
uses: actions/checkout@v4
with:
repository: DiligentGraphics/DiligentTestData
path: DiligentTestData
- name: Set up build environment
if: success()
uses: DiligentGraphics/github-action/setup-build-env@v1
with:
platform: Linux
cmake-generator: ${{ matrix.cmake_generator }}
- name: Configure CMake
if: success()
uses: DiligentGraphics/github-action/configure-cmake@v1
with:
cc: ${{ matrix.cc }}
cxx: ${{ matrix.cxx }}
generator: ${{ matrix.cmake_generator }}
build-type: ${{ matrix.build_type }}
cmake-args: ${{ matrix.cmake_args }}
- name: Build
id: build
if: success()
uses: DiligentGraphics/github-action/build@v1
# Core tests
- name: DiligentCoreTest
if: success()
uses: DiligentGraphics/github-action/run-core-tests@v1
- name: DiligentCoreAPITest VK
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-core-gpu-tests@v1
with:
mode: vk_sw
args: --gtest_filter=-DrawCommandTest.DrawIndexedInstancedIndirect_FirstInstance_BaseVertex_FirstIndex_VBOffset_IBOffset_InstOffset:TextureCreation/TextureCreationTest.CreateTexture/TEX_FORMAT_BGRA8_TYPELESS
- name: DiligentCoreAPITest GL
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-core-gpu-tests@v1
with:
mode: gl
args: "--gtest_filter=-DrawCommandTest.MultiDrawIndirectCount:DrawCommandTest.MultiDrawIndexedIndirectCount:PipelineResourceSignatureTest.StructuredBuffers"
- name: DiligentCoreAPITest GL with Non-Separable Programs
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-core-gpu-tests@v1
with:
mode: gl
non-separable-progs: true
args: "--gtest_filter=-DrawCommandTest.MultiDrawIndirectCount:DrawCommandTest.MultiDrawIndexedIndirectCount:PipelineResourceSignatureTest.StructuredBuffers:DrawCommandTest.StructuredBufferArray"
# Tools tests
- name: DiligentToolsTest
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-tools-tests@v1
- name: DiligentToolsGPUTest VK
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-tools-gpu-tests@v1
with:
mode: vk_sw
- name: DiligentToolsGPUTest GL
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-tools-gpu-tests@v1
with:
mode: gl
- name: HLSL2GLSLConverterTest
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-hlsl2glsl-converter-test@v1
# Samples tests
- name: Sample Tests Vk
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-sample-tests@v1
with:
mode: "vk_sw"
- name: Sample Tests GL
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-sample-tests@v1
with:
mode: "gl"
- name: Sample Tests GL with Non-Separable Programs
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-sample-tests@v1
with:
mode: "gl"
non-separable-progs: "true"