mirror of
https://github.com/eosswedenorg/antelope-keygen
synced 2026-06-23 10:13:41 +02:00
.github/workflows/package.yml: build both gui and cli on windows.
This commit is contained in:
parent
8bc9a87cc9
commit
9e048c7175
1 changed files with 6 additions and 1 deletions
7
.github/workflows/package.yml
vendored
7
.github/workflows/package.yml
vendored
|
|
@ -43,6 +43,11 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Qt
|
||||||
|
uses: jurplel/install-qt-action@v2
|
||||||
|
with:
|
||||||
|
version: '5.9'
|
||||||
|
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: |
|
run: |
|
||||||
if ("${{matrix.arch}}" -eq "x86") {
|
if ("${{matrix.arch}}" -eq "x86") {
|
||||||
|
|
@ -50,7 +55,7 @@ jobs:
|
||||||
} else {
|
} else {
|
||||||
$PLATFORM="${{matrix.arch}}"
|
$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
|
- name: Build
|
||||||
run: cmake --build build --config Release
|
run: cmake --build build --config Release
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue