Skip to content

Commit 16ce7b9

Browse files
fixup! [#70236] Add windows tests to gh actions
1 parent a78cf5a commit 16ce7b9

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)