1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-16 03:44:56 +02:00

.github/workflows/package.yml: build both gui and cli on windows.

This commit is contained in:
Henrik Hautakoski 2020-04-24 18:16:18 +02:00
parent 8bc9a87cc9
commit 9e048c7175

View file

@ -43,6 +43,11 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Qt
uses: jurplel/install-qt-action@v2
with:
version: '5.9'
- name: Configure
run: |
if ("${{matrix.arch}}" -eq "x86") {
@ -50,7 +55,7 @@ jobs:
} else {
$PLATFORM="${{matrix.arch}}"
}
cmake -A $PLATFORM -D CMAKE_BUILD_TYPE=Release -D CPACK_GENERATOR=NSIS -S . -B build
cmake -A $PLATFORM -DCOMPONENT_GUI=ON -DCOMPONENT_CLI=ON -D CMAKE_BUILD_TYPE=Release -D CPACK_GENERATOR=NSIS -S . -B build
- name: Build
run: cmake --build build --config Release