ci: Speed up MacOS builds
[platform/upstream/Vulkan-Tools.git] / .github / workflows / build.yml
1 # Copyright (c) 2021 Valve Corporation
2 # Copyright (c) 2021 LunarG, Inc.
3
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16 # Author: Jeremy Kniager <jeremyk@lunarg.com>
17
18 name: CI Build
19
20 on:
21     push:
22     pull_request:
23         branches:
24             - master
25
26 jobs:
27     linux:
28         runs-on: ${{matrix.os}}
29
30         strategy:
31             matrix:
32                 cc: [ gcc, clang ]
33                 cxx: [ g++, clang++ ]
34                 config: [ Debug, Release ]
35                 os: [ ubuntu-18.04, ubuntu-20.04 ]
36                 cube_wsi: [ XCB, XLIB, WAYLAND, DISPLAY ]
37                 exclude:
38                     - cc: gcc
39                       cxx: clang++
40                     - cc: clang
41                       cxx: g++
42                     - os: ubuntu-18.04
43                       cube_wsi: WAYLAND
44
45         steps:
46             - uses: actions/checkout@v2
47             - uses: actions/setup-python@v2
48               with:
49                 python-version: '3.7'
50             - run: |
51                 sudo apt-get -qq update
52                 sudo apt install libxkbcommon-dev libwayland-dev libmirclient-dev libxrandr-dev libx11-xcb-dev wayland-protocols
53
54             - name: Fetch and install headers
55               run: python scripts/update_deps.py --dir external
56
57             - name: Generate build files
58               run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=${{matrix.config}} -DCUBE_WSI_SELECTION=${{matrix.cube_wsi}} -Cexternal/helper.cmake
59               env:
60                 CC: ${{matrix.cc}}
61                 CXX: ${{matrix.cxx}}
62
63             - name: Build the tools
64               run: make -C build
65
66             - name: Verify generated source files
67               run: python scripts/generate_source.py --verify external/Vulkan-Headers/registry
68
69     windows:
70         runs-on: ${{matrix.os}}
71
72         strategy:
73             matrix:
74                 arch: [ Win32, x64 ]
75                 config: [ Debug, Release ]
76                 os: [ windows-latest ]
77
78         steps:
79             - uses: actions/checkout@v2
80             - uses: actions/setup-python@v2
81               with:
82                 python-version: '3.7'
83
84             - name: Fetch and install headers
85               run: python scripts/update_deps.py --dir external
86
87             - name: Generate build files
88               run: cmake -S. -Bbuild -A${{matrix.arch}} "-Cexternal/helper.cmake"
89
90             - name: Build the tools
91               run: cmake --build ./build --config ${{matrix.config}}
92
93             - name: Verify generated source files
94               run: python scripts/generate_source.py --verify external/Vulkan-Headers/registry
95
96     mac:
97         runs-on: macos-latest
98
99         strategy:
100             matrix:
101                 config: [ Debug, Release ]
102
103         steps:
104             - uses: actions/checkout@v2
105             - uses: actions/setup-python@v2
106               with:
107                 python-version: '3.7'
108             - name: Install Ninja
109               run: brew install ninja
110             - name: Cache dependencies
111               id: cache-deps
112               uses: actions/cache@v3
113               env:
114                 cache-name: cache-macos-latest
115               with:
116                 path: |
117                   external/Vulkan-Headers/build/install
118                   external/MoltenVK
119                   external/Vulkan-Loader/build/install
120                 key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.config }}-${{ hashfiles('scripts/known_good.json') }}
121
122             - name: Fetch/Update dependencies
123               run: python scripts/update_deps.py --dir external --skip-existing-install
124
125             - name: Generate build files
126               run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=${{matrix.config}} -Cexternal/helper.cmake -G "Ninja"
127               env:
128                 # Specify the minimum version of macOS on which the target binaries are to be deployed.
129                 # https://cmake.org/cmake/help/latest/envvar/MACOSX_DEPLOYMENT_TARGET.html
130                 MACOSX_DEPLOYMENT_TARGET: 10.12
131
132             - name: Build the tools
133               run: cmake --build build
134
135             - name: Verify generated source files
136               run: python scripts/generate_source.py --verify external/Vulkan-Headers/registry
137
138     gn:
139         runs-on: ubuntu-18.04
140
141         strategy:
142             matrix:
143                 config: [ Debug, Release ]
144
145         steps:
146             - uses: actions/checkout@v2
147
148             - name: Get depot tools
149               run: |
150                 git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git depot_tools
151                 echo "$GITHUB_WORKSPACE/depot_tools" >> $GITHUB_PATH
152             - name: Fetch and install headers
153               run: ./build-gn/update_deps.sh
154
155             - name: Generate build files
156               run: gn gen out/${{matrix.config}} --args="is_debug=true"
157               if: matrix.config != 'Release'
158
159             - name: Generate build files
160               run: gn gen out/${{matrix.config}} --args="is_debug=false"
161               if: matrix.config == 'Release'
162
163             - name: Build the tools
164               run: ninja -C out/${{matrix.config}}
165
166     android:
167         runs-on: ubuntu-20.04
168         steps:
169             - uses: actions/checkout@v2
170             - name: Setup Environment
171               run: |
172                   echo "ANDROID_SDK_HOME=$ANDROID_SDK_ROOT" >> $GITHUB_ENV
173                   echo "ANDROID_NDK_HOME=$ANDROID_NDK_LATEST_HOME" >> $GITHUB_ENV
174                   echo "$ANDROID_SDK_ROOT/build-tools/31.0.0" >> $GITHUB_PATH
175                   echo "$ANDROID_NDK_LATEST_HOME" >> $GITHUB_PATH
176                   $ANDROID_SDK_ROOT/tools/bin/sdkmanager "platforms;android-23"
177                   keytool -genkey -v -keystore $HOME/.android/debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "C=US, O=Android, CN=Android Debug"
178             - name: Build vkcube
179               run: |
180                   cd build-android
181                   ./build_all.sh