-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (43 loc) · 1.58 KB
/
cmake.yml
File metadata and controls
59 lines (43 loc) · 1.58 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
name: CMake
on: [push, pull_request]
env:
BUILD_TYPE: RelWithDebInfo
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Install prerequisites
run: |
sudo apt update
sudo apt install -y g++-13
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 90
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 90
- name: Install OpenCL driver for CPU
run: sudo bash .github/scripts/install_intel_opencl.sh;
- name: Show clinfo full output
run: clinfo
- name: Instal Vulkan software CPU driver
run: sudo bash .github/scripts/install_software_vulkan_cpu_driver.sh;
- name: Show vulkaninfo full output
run: vulkaninfo
# - name: Install CUDA SDK
# run: sudo bash .github/scripts/install_cuda.sh;
- name: Configure Linux, install Vulkan SDK
run: sudo bash scripts/configure-linux.sh;
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel $(nproc)
- name: Run 100_main_aplusb
working-directory: ${{github.workspace}}/build
run: |
BIN=./100_main_aplusb
if [ -f "./${{env.BUILD_TYPE}}/100_main_aplusb" ]; then
BIN="./${{env.BUILD_TYPE}}/100_main_aplusb"
fi
# Optional: print deps for debugging
file "$BIN" || true
ldd "$BIN" || true
# Run
AVK_ENABLE_VALIDATION_LAYERS=false "$BIN"