-
Notifications
You must be signed in to change notification settings - Fork 237
169 lines (160 loc) · 6.21 KB
/
build-slang.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
name: Build Slang
on:
push:
branches: [master]
paths-ignore:
- 'docs/**'
- 'LICENCE'
- 'CONTRIBUTION.md'
- 'README.md'
pull_request:
branches: [master]
paths-ignore:
- 'docs/**'
- 'LICENCE'
- 'CONTRIBUTION.md'
- 'README.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: [linux, macos, windows]
config: [debug, release]
compiler: [gcc, clang, cl]
platform: [x86_64, aarch64]
exclude:
# Default to x64, but aarch64 on osx
- { os: linux, platform: aarch64 }
- { os: windows, platform: aarch64 }
- { os: macos, platform: x86_64 }
# Unused compiler configs
- { os: linux, compiler: clang }
- { os: linux, compiler: cl }
- { os: windows, compiler: gcc }
- { os: windows, compiler: clang }
- { os: macos, compiler: gcc }
- { os: macos, compiler: cl }
include:
- { os: linux, runs-on: ubuntu-20.04 }
- { os: macos, runs-on: macos-latest }
- { os: windows, runs-on: windows-latest }
# Warnings are treated as errors by default.
# But we may want to disable it temporarily.
- { os: linux, warnings-as-errors: true }
- { os: macos, warnings-as-errors: true }
- { os: windows, warnings-as-errors: true }
# Set a test category depending on the config, smoke by default,
# quick or full conditionally otherwise
- test-category: smoke
- { os: windows, test-category: quick }
- { config: release, test-category: full }
# default not full gpu tests
- full-gpu-tests: false
# The runners don't have a GPU by default except for the self-hosted ones
- has-gpu: false
# Self-hosted aarch64 build
#- os: linux
# config: release
# compiler: gcc
# platform: aarch64
# test-category: smoke
# full-gpu-tests: false
# runs-on: [self-hosted, Linux, ARM64]
# has-gpu: true
# Self-hosted full gpu build
- os: windows
config: release
compiler: cl
platform: x86_64
test-category: full
full-gpu-tests: true
has-gpu: true
fail-fast: false
runs-on: ${{ matrix.runs-on }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: '0'
- name: Setup
uses: ./.github/actions/common-setup
with:
os: ${{matrix.os}}
compiler: ${{matrix.compiler}}
platform: ${{matrix.platform}}
config: ${{matrix.config}}
build-llvm: true
- name: Build Slang
run: |
if [[ "${{ matrix.os }}" =~ "windows" && "${{ matrix.config }}" != "release" ]]; then
# Doing a debug build will try to link against a release built llvm, this
# is a problem on Windows, so make slang-llvm in release build and use
# that as though it's a fetched binary via these presets.
cmake --workflow --preset slang-llvm
# Configure, pointing to our just-generated slang-llvm archive
cmake --preset default --fresh \
-DSLANG_SLANG_LLVM_FLAVOR=FETCH_BINARY \
"-DSLANG_SLANG_LLVM_BINARY_URL=$(pwd)/build/dist-release/slang-llvm.zip" \
"-DCMAKE_COMPILE_WARNING_AS_ERROR=${{matrix.warnings-as-errors}}"
cmake --workflow --preset "${{matrix.config}}"
else
# Otherwise, use the system llvm we have just build or got from the
# cache in the setup phase
cmake --preset default --fresh \
-DSLANG_SLANG_LLVM_FLAVOR=USE_SYSTEM_LLVM \
-DCMAKE_COMPILE_WARNING_AS_ERROR=${{matrix.warnings-as-errors}}
cmake --workflow --preset "${{matrix.config}}"
fi
- name: Generate testing command
run: |
echo "export SLANG_RUN_SPIRV_VALIDATION=1" > build/test-slang.sh
echo "export SLANG_USE_SPV_SOURCE_LANGUAGE_UNKNOWN=1" >> build/test-slang.sh
cp build/test-slang.sh build/test-slang-via-glsl.sh
if [[ "${{matrix.full-gpu-tests}}" == "true" ]]; then
echo "\"$bin_dir/slang-test\"
-use-test-server
-server-count 8
-category ${{ matrix.test-category }}
-api all-cpu" >> build/test-slang.sh
echo "\"$bin_dir/slang-test\"
-use-test-server
-server-count 8
-category ${{ matrix.test-category }}
-emit-spirv-via-glsl
-api vk
-expected-failure-list tests/expected-failure.txt" >> build/test-slang-via-glsl.sh
elif [[ "${{matrix.has-gpu}}" == "true" ]]; then
echo "\"$bin_dir/slang-test\"
-use-test-server
-category ${{ matrix.test-category }}
-api all-dx12
-expected-failure-list tests/expected-failure-github.txt" >> build/test-slang.sh
else
echo "\"$bin_dir/slang-test\"
-use-test-server
-category ${{ matrix.test-category }}
-api all-dx12
-expected-failure-list tests/expected-failure-github.txt
-expected-failure-list tests/expected-failure-record-replay-tests.txt" >> build/test-slang.sh
fi
- name: Upload Slang executables
uses: actions/upload-artifact@v4
with:
name: test-slang-${{matrix.os}}-${{matrix.platform}}-${{matrix.compiler}}-${{matrix.config}}
path: |
build/*/bin
build/test-slang.sh
build/test-slang-via-glsl.sh
- name: Upload slang-LLVM
uses: actions/upload-artifact@v4
if: ${{ ! matrix.full-gpu-tests }}
with:
name: slang-build-${{matrix.os}}-${{matrix.platform}}-${{matrix.compiler}}-${{matrix.config}}
# The install directory used in the packaging step
path: build/dist-${{matrix.config}}/**/ZIP/slang/*