We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a786ff commit 88efb1cCopy full SHA for 88efb1c
.github/workflows/build_tutorials.yml
@@ -30,6 +30,15 @@ jobs:
30
apt-get update -qq &&
31
apt-get install -y build-essential g++ glslang-tools \
32
python3 python3-pip libglfw3-dev libvulkan-dev locales wget cmake
33
+
34
+ - name: Install gtest manually
35
+ run: apt-get install libgtest-dev && \
36
+ cd /usr/src/gtest && \
37
+ cmake . && cmake --build .&& \
38
+ cp lib/*.a /usr/lib && \
39
+ ln -s /usr/lib/libgtest.a /usr/local/lib/libgtest.a && \
40
+ ln -s /usr/lib/libgtest_main.a /usr/local/lib/libgtest_main.a
41
42
- name: Install ROCm Dev
43
run: |
44
export DEBIAN_FRONTEND=noninteractive
@@ -47,6 +56,7 @@ jobs:
47
56
rocthrust-dev
48
57
rm -rf /var/lib/apt/lists/*
49
58
apt-get autoclean
59
50
60
- name: Configure and Build
51
61
shell: bash
52
62
0 commit comments