-
Notifications
You must be signed in to change notification settings - Fork 95
132 lines (109 loc) · 4.34 KB
/
Copy pathbuild-linux.yml
File metadata and controls
132 lines (109 loc) · 4.34 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
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
name: Linux build
on: [push, pull_request]
jobs:
precheks:
name: Linux -> Pre-checks
runs-on: ubuntu-24.04
steps:
- name: Clone DiligentCore
uses: actions/checkout@v6
with:
repository: DiligentGraphics/DiligentCore
path: DiligentCore
- name: Clone DiligentTools
uses: actions/checkout@v6
with:
path: DiligentTools
- name: Format validation
shell: bash
working-directory: ${{github.workspace}}/DiligentTools/BuildTools/FormatValidation
run: ./validate_format_linux.sh
- name: Codespell
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
ignore_words_file: ./DiligentTools/.github/.codespellignore
skip: ./DiligentTools/.git,./DiligentTools/ThirdParty,./DiligentTools/NativeApp/Android/ndk_helper,./DiligentTools/NativeApp/Android/arcore_sdk
path: ./DiligentTools
build:
needs: precheks
runs-on: ubuntu-24.04
strategy:
matrix:
name: ["GCC", "Clang"]
build_type: ["Debug", "Release"]
cmake_args: ["-DDILIGENT_BUILD_TOOLS_TESTS=ON -DDILIGENT_BUILD_TOOLS_INCLUDE_TEST=ON -DZLIB_BUILD_MINIZIP=ON"]
include:
- name: "GCC"
cmake_generator: "Unix Makefiles"
cc: "gcc-14"
cxx: "g++-14"
- name: "Clang"
cmake_generator: "Ninja"
cc: "clang-18"
cxx: "clang++-18"
- name: "Clang-ASAN"
build_type: "RelWithDebInfo"
cmake_generator: "Ninja"
cmake_args: "-DDILIGENT_BUILD_TOOLS_TESTS=ON -DZLIB_BUILD_MINIZIP=ON"
sanitizer: "address"
cc: "clang-18"
cxx: "clang++-18"
- name: "Clang-TSAN"
build_type: "RelWithDebInfo"
cmake_generator: "Ninja"
cmake_args: "-DDILIGENT_BUILD_TOOLS_TESTS=ON -DZLIB_BUILD_MINIZIP=ON"
sanitizer: "thread"
cc: "clang-18"
cxx: "clang++-18"
name: Linux -> ${{ matrix.name }}-x64, ${{ matrix.build_type }}
steps:
- name: Checkout
uses: DiligentGraphics/github-action/checkout@v25
- name: Set up build environment
if: success()
uses: DiligentGraphics/github-action/setup-build-env@v25
with:
platform: Linux
cmake-generator: ${{ matrix.cmake_generator }}
- name: Configure CMake
if: success()
uses: DiligentGraphics/github-action/configure-cmake@v25
with:
cc: ${{ matrix.cc }}
cxx: ${{ matrix.cxx }}
generator: ${{ matrix.cmake_generator }}
build-type: ${{ matrix.build_type }}
cmake-args: ${{ matrix.cmake_args }}
sanitizer: ${{ matrix.sanitizer }}
- name: Build
id: build
if: success()
uses: DiligentGraphics/github-action/build@v25
with:
target: install
- name: DiligentToolsTest
if: success()
uses: DiligentGraphics/github-action/run-tools-tests@v25
- name: DiligentToolsGPUTest VK
# NB: it is essential to include failure() to override the default status check of success()
# that is automatically applied to if conditions that don't contain a status check function.
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-tools-gpu-tests@v25
with:
mode: vk_sw
- name: DiligentToolsGPUTest GL
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-tools-gpu-tests@v25
with:
mode: gl
- name: HLSL2GLSLConverterTest
if: ${{ success() || failure() && steps.build.outcome == 'success' }}
uses: DiligentGraphics/github-action/run-hlsl2glsl-converter-test@v25
- name: Upload artifact
uses: actions/upload-artifact@v7
if: ${{ success() && matrix.build_type != 'Debug' && matrix.name != 'Clang-ASAN' && matrix.name != 'Clang-TSAN' }}
with:
name: DiligentTools-Linux-${{ matrix.name }}-x64-${{ matrix.build_type }}
path: ${{env.DILIGENT_INSTALL_DIR}}/bin/DiligentTools
retention-days: 90