We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b4bae5 commit 41b2f73Copy full SHA for 41b2f73
.github/workflows/windows-build.yml
@@ -81,10 +81,14 @@ jobs:
81
make CC="gcc -fPIC -D_WIN32_WINNT=0x0600 -DNATPMP_STATICLIB" libnatpmp.a V=1
82
cd ../../../../
83
84
- - name: Building wakunode2
+ - name: Building wakunode2.exe
85
run: |
86
make wakunode2 LOG_LEVEL=DEBUG V=3 -j8
87
88
+ - name: Building libwaku.dll
89
+ run: |
90
+ make libwaku STATIC=0 LOG_LEVEL=DEBUG V=1 -j
91
+
92
- name: Check Executable
93
94
if [ -f "./build/wakunode2.exe" ]; then
@@ -93,3 +97,9 @@ jobs:
97
echo "Build failed: wakunode2.exe not found"
98
exit 1
95
99
fi
100
+ if [ -f "./build/libwaku.dll" ]; then
101
+ echo "libwaku.dll build successful"
102
+ else
103
+ echo "Build failed: libwaku.dll not found"
104
+ exit 1
105
+ fi
0 commit comments