ci: simplify windows builds

This commit is contained in:
Igor Sirotin 2026-05-21 15:29:42 +01:00
parent 2d42f05b9e
commit f36f84b4c0
No known key found for this signature in database
GPG Key ID: 0EABBCB40CB9AD4A

View File

@ -116,27 +116,7 @@ jobs:
- name: Creating tmp directory
run: mkdir -p tmp
- name: Building wakunode2.exe
- name: Build binaries
run: |
export PATH="$GITHUB_WORKSPACE/.nim_runtime/bin:$HOME/.nimble/bin:$PATH"
make wakunode2 V=3 -j${{ env.NPROC }}
- name: Building libwaku.dll
run: |
export PATH="$GITHUB_WORKSPACE/.nim_runtime/bin:$HOME/.nimble/bin:$PATH"
make libwaku STATIC=0 V=1 -j
- name: Check Executable
run: |
if [ -f "./build/wakunode2.exe" ]; then
echo "wakunode2.exe build successful"
else
echo "Build failed: wakunode2.exe not found"
exit 1
fi
if [ -f "./build/libwaku.dll" ]; then
echo "libwaku.dll build successful"
else
echo "Build failed: libwaku.dll not found"
exit 1
fi
make all STATIC=0 V=1 -j${{ env.NPROC }}