-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathappveyor.yml
38 lines (27 loc) · 1.12 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
version: '{build}'
init:
- ps: Update-AppveyorBuild -Version "$($env:ospsuite_version).$($env:appveyor_build_version)"
install:
- cmd: set PATH=C:\Ruby22\bin;%PATH%
- cmd: git submodule update --init --recursive
- ps: >-
(new-object net.webclient).DownloadFile('https://go.microsoft.com/fwlink/?LinkID=863265', 'c:\\netfx472.exe')
Copy-Item c:\netfx472.exe .
- ps: >-
(new-object net.webclient).DownloadFile('https://aka.ms/vs/17/release/vc_redist.x64.exe', 'C:\\vc_redist.x64.exe')
Copy-Item C:\vc_redist.x64.exe .
- ps: >-
(new-object net.webclient).DownloadFile('https://github.com/Open-Systems-Pharmacology/MiKTeX/releases/download/v2.9.3/MikTex.2.9.3.msi', 'C:\\MikTex.msi')
Copy-Item C:\MikTex.msi .
build_script: rake "create_setup[%APPVEYOR_BUILD_VERSION%]"
artifacts:
- path: "**/output/OSPSuite*.exe"
- path: "**/output/versions.txt"
name: "versions"
notifications:
- provider: Slack
incoming_webhook:
secure: 4MH9Em6TtrKalq6808dhPOqypTfYBJvVlqPaa9akNyFEAs8X080yIO8g1FLt3tNfBN4OpeBnkgrXzf7AqNKV5561x7Coux3ByGrHmsL1sCo=
skip_commits:
files:
- "*.md"