File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments