File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed
Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -134,24 +134,15 @@ jobs:
134134 run : brew install llvm
135135 - name : Install SFML
136136 run : brew install sfml
137- env :
138- CC : /opt/homebrew/opt/llvm/bin/clang
139- CXX : /opt/homebrew/opt/llvm/bin/clang++
140137 - name : Create build directory
141138 working-directory : ./obengine
142139 run : mkdir build
143- - name : Run CMake on ObEngine
144- working-directory : ./obengine
145- run : cd build && cmake -DBUILD_TESTS=ON -DBUILD_TOOLKIT=ON -DCMAKE_BUILD_TYPE=Release ..
146- env :
147- CC : /opt/homebrew/opt/llvm/bin/clang
148- CXX : /opt/homebrew/opt/llvm/bin/clang++
149140 - name : Compile ObEngine
150141 working-directory : ./obengine
151- run : cd build && make -j8
142+ run : cd build && cmake -DBUILD_TESTS=ON -DBUILD_TOOLKIT=ON -DCMAKE_BUILD_TYPE=Release .. && make -j8
152143 env :
153- CC : /opt/homebrew /opt/llvm/bin/clang
154- CXX : /opt/homebrew /opt/llvm/bin/clang++
144+ CC : /usr/local /opt/llvm/bin/clang
145+ CXX : /usr/local /opt/llvm/bin/clang++
155146 - name : Run tests
156147 working-directory : ./obengine
157148 run : cd build && ./tests/ObEngineTests
You can’t perform that action at this time.
0 commit comments