aboutsummaryrefslogtreecommitdiffhomepage
path: root/appveyor.yml
blob: a24e5295bb32178fc50069dc1f5ba0b3ce423421 (plain) (blame)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
version: build-{build}
clone_folder: c:\projects\janet
image:
- Visual Studio 2019
configuration:
- Release
- Debug
platform:
- x64
environment:
  matrix:
  - arch: Win64
matrix:
  fast_finish: true

# skip unsupported combinations
init:
    - call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat"

install:
    - set JANET_BUILD=%appveyor_repo_commit:~0,7%
    - choco install nsis -y -pre
    # Replace makensis.exe and files with special long string build. This should
    # prevent issues when setting PATH during installation.
    - 7z e "tools\nsis-3.04-strlen_8192.zip" -o"C:\Program Files (x86)\NSIS\" -y
    - build_win all
    - refreshenv
    # We need to reload vcvars after refreshing
    - call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat"
    - build_win test-install
    - set janet_outname=%appveyor_repo_tag_name%
    - if "%janet_outname%"=="" set janet_outname=v1.3.0
build: off

only_commits:
  files:
    - appveyor.yml
    - src/

artifacts:
    - name: janet.c
      path: dist\janet.c
      type: File
    - name: janet.h
      path: dist\janet.h
      type: File
    - name: janetconf.h
      path: dist\janetconf.h
      type: File
    - name: "janet-$(janet_outname)-windows"
      path: dist
      type: Zip
    - path: "janet-$(janet_outname)-windows-installer.exe"
      name: "janet-$(janet_outname)-windows-installer.exe"
      type: File

deploy:
  description: 'The Janet Programming Language.'
  provider: GitHub
  auth_token:
    secure: lwEXy09qhj2jSH9s1C/KvCkAUqJSma8phFR+0kbsfUc3rVxpNK5uD3z9Md0SjYRx
  artifact: /janet.*/
  draft: true
  on:
      APPVEYOR_REPO_TAG: true