forked from crc-org/crc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
27 lines (27 loc) · 754 Bytes
/
Copy pathappveyor.yml
File metadata and controls
27 lines (27 loc) · 754 Bytes
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
build: off
clone_folder: c:\gopath\src\github.com\code-ready\crc
environment:
GOPATH: c:\gopath
image: Visual Studio 2019
before_test:
- choco install mingw
- choco install make
- choco install wixtoolset
- set PATH="C:\go116";%PATH%;"C:\Program Files (x86)\WiX Toolset v3.11\bin"
- make MOCK_BUNDLE=true BUNDLE_DIR=./ out/windows-amd64/crc-windows-installer.zip
- make cross
test_script:
- make test
artifacts:
- path: out\linux-amd64\crc
name: crc linux executable
type: File
- path: out\macos-amd64\crc
name: crc darwin
type: File
- path: out\windows-amd64\crc.exe
name: crc windows executable
type: File
- path: out\windows-amd64\crc-windows-installer.zip
name: crc windows installer
type: Zip