Skip to content

Commit f29eda0

Browse files
committed
Add layer_gpu_profile to GitHub Actions builds
1 parent 0112ff7 commit f29eda0

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build_test.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,15 @@ jobs:
8080
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
8181
make -j4
8282
83+
- name: Build layer_gpu_profile
84+
run: |
85+
export CC=clang
86+
export CXX=clang++
87+
mkdir layer_gpu_profile/build_rel
88+
cd layer_gpu_profile/build_rel
89+
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
90+
make -j4
91+
8392
- name: Build and run unit tests
8493
run: |
8594
export CC=clang
@@ -126,6 +135,15 @@ jobs:
126135
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
127136
make -j4
128137
138+
- name: Build layer_gpu_profile
139+
run: |
140+
export CC=gcc
141+
export CXX=g++
142+
mkdir layer_gpu_profile/build_rel
143+
cd layer_gpu_profile/build_rel
144+
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
145+
make -j4
146+
129147
build-android:
130148
name: Android
131149
runs-on: ubuntu-22.04
@@ -150,6 +168,11 @@ jobs:
150168
cd layer_gpu_timeline
151169
bash ./android_build.sh Release
152170
171+
- name: Build layer_gpu_profile
172+
run: |
173+
cd layer_gpu_profile
174+
bash ./android_build.sh Release
175+
153176
build-ubuntu-x64-clang-new-common:
154177
name: Ubuntu x64 generate common
155178
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)