-
Notifications
You must be signed in to change notification settings - Fork 86
/
appveyor.yml
48 lines (42 loc) · 1.55 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
image: Visual Studio 2019
environment:
nodejs_version: "20"
matrix:
- QT: C:\Qt\6.2\msvc2019_64
# As installed by `choco`
GOROOT: C:\Program Files\Go
GOPATH: C:\gopath\
GOTOOLCHAIN: local
PLATFORM: amd64
COMPILER: msvc
install:
- ps: Install-Product node $env:nodejs_version
- git submodule update --init --recursive
matrix:
fast_finish: true
before_build:
- set PATH=C:\Qt\Tools\QtCreator\bin\;%GOROOT%\bin;C:\gopath\bin\;C:\Qt\6.2\msvc2019_64\bin\;C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;C:\MinGW\bin;%PATH%
- set MINGW_BIN=/c/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin
build_script:
- echo on
- choco install go --version=1.23.2
- go version
- go env
- choco install make
- choco install nsis -pre
- mkdir %GOPATH%\src\github.com\BitBoxSwiss
- cd ..
- mv bitbox-wallet-app %GOPATH%\src\github.com\BitBoxSwiss\
- cd %GOPATH%\src\github.com\BitBoxSwiss\bitbox-wallet-app\
- make qt-windows
- cd frontends/qt
- makensis setup.nsi
# Upload build artifacts but only for commits pushes, no pull requests.
after_build:
- if defined APPVEYOR_PULL_REQUEST_NUMBER appveyor exit
# %APPVEYOR_BUILD_FOLDER% is the path to the git clone.
- mkdir %APPVEYOR_BUILD_FOLDER%
# Copy build artifacts back to the git clone dir because they can only be
# relative to that folder.
- cp %GOPATH%\src\github.com\BitBoxSwiss\bitbox-wallet-app\frontends\qt\BitBox-installer.exe %APPVEYOR_BUILD_FOLDER%\BitBox-installer.exe
- appveyor PushArtifact %APPVEYOR_BUILD_FOLDER%\BitBox-installer.exe