-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathintermediate-windows-2022.yaml
55 lines (46 loc) · 1.29 KB
/
intermediate-windows-2022.yaml
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
#
# SPDX-FileCopyrightText: 2022 Julian Amann <dev@vertexwahn.de>
# SPDX-License-Identifier: Apache-2.0
#
steps:
- checkout: self
clean: true
fetchDepth: 1
lfs: false
submodules: false
- script: |
bazel version
displayName: 'Show Bazel version'
- script: |
SET ROOT_DIR=%cd%
echo "genrule"
cd %ROOT_DIR%/intermediate/cpp/googletest
bazel test --config=gcc11 //...
bazel test --enable_bzlmod --config=gcc11 //...
displayName: 'googletest'
- script: |
SET ROOT_DIR=%cd%
cd %ROOT_DIR%/intermediate/cpp/oneTBB
bazel build //...
bazel test //...
displayName: 'oneTBB'
#- script: |
# SET ROOT_DIR=%cd%
# cd %ROOT_DIR%/intermediate/cpp/GPU/OpenGL/EmscriptenGL
# bazel build --config=vs2022 //...
# displayName: 'EmscriptenGL'
#- script: |
# SET ROOT_DIR=%cd%
# cd %ROOT_DIR%/intermediate/cpp/GPU/OpenGL/EmscriptenGLFW
# bazel build --config=vs2022 //...
# displayName: 'EmscriptenGLFW'
- script: |
SET ROOT_DIR=%cd%
cd %ROOT_DIR%/intermediate/cpp/OpenEXR/bzlmod
bazel build //...
displayName: 'OpenEXR bzlmod'
- script: |
SET ROOT_DIR=%cd%
cd %ROOT_DIR%/intermediate/cpp/OpenEXR/repo-focused
bazel build //...
displayName: 'OpenEXR'