File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -148,9 +148,8 @@ jobs:
148148 mkdir -p artifacts/linux_test_binaries
149149 mkdir -p build
150150 pushd build
151- cmake .. -DCMAKE_CXX_STANDARD=14 \
152- -DUSER_RENODE_DIR=../renode
153- make
151+ cmake ..
152+ make CPPSTD=c++14 -j8
154153 popd
155154 for i in examples/*/; do
156155 cp "$i"/bin/* artifacts/linux_example_binaries
@@ -218,13 +217,11 @@ jobs:
218217 mkdir -p artifacts/windows_test_binaries
219218 mkdir -p build
220219 pushd build
221- cmake .. -G "Unix Makefiles" -DCMAKE_CXX_STANDARD=14 \
222- -DUSER_RENODE_DIR=../renode \
223- -DUSER_SYSTEMC_INCLUDE_DIR=$(pwd)/../systemc/src \
220+ cmake .. -G "Unix Makefiles" -DUSER_SYSTEMC_INCLUDE_DIR=$(pwd)/../systemc/src \
224221 -DUSER_SYSTEMC_LIB_DIR=$(pwd)/../artifacts/systemc_windows \
225222 -DCMAKE_CXX_FLAGS="-DWIN32_LEAN_AND_MEAN"
226223 ls -la
227- make
224+ make CPPSTD=c++14 -j8
228225 popd
229226 for i in examples/*/; do
230227 cp "$i"/bin/* artifacts/windows_example_binaries
You can’t perform that action at this time.
0 commit comments