forked from Kautenja/PotatoChips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
97 lines (97 loc) · 2.39 KB
/
.travis.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
language: cpp
jobs:
include:
- os: linux
dist: xenial
arch: amd64
- os: linux
dist: xenial
arch: arm64
script:
- scons -j2 test
before_deploy: ~
deploy: ~
- os: linux
dist: bionic
arch: amd64
- os: linux
dist: bionic
arch: arm64
script:
- scons -j2 test
before_deploy: ~
deploy: ~
- os: osx
osx_image: xcode11
- os: osx
osx_image: xcode12
- os: windows
before_install:
- choco install make
- choco install zip
script:
- export RACK_DIR="${HOME}"/Rack/Rack-SDK
- make dep
- make dist
addons:
apt:
packages:
- git
- gdb
- curl
- cmake
- libx11-dev
- libglu1-mesa-dev
- libxrandr-dev
- libxinerama-dev
- libxcursor-dev
- libxi-dev
- zlib1g-dev
- libasound2-dev
- libgtk2.0-dev
- libjack-jackd2-dev
- jq
- scons
homebrew:
packages:
- git
- wget
- cmake
- autoconf
- automake
- libtool
- jq
- python
- scons
git:
submodules: true
env:
global:
- MAKEFLAGS="-j 2"
install:
- mkdir -p "${HOME}"/Rack
- pushd "${HOME}"/Rack
- curl -o Rack-SDK.zip https://vcvrack.com/downloads/Rack-SDK-1.1.6.zip
- unzip Rack-SDK.zip
- popd
script:
- scons -j2 test
- export RACK_DIR="${HOME}"/Rack/Rack-SDK
- make dep
- make dist
before_deploy:
- export RELEASE_FILE=$(ls dist/*.zip)
- echo "${RELEASE_FILE}"
notifications:
email: false
deploy:
provider: releases
api_key:
secure: bAEG27Sl2IJ++CYRXC910TR0gxqi+Xo0mD5X/ujDC0ju35J7pluPcaWoHu6/pqCjz7M12KKGPp5aqr/mleAEAdT0U1GtiWPdh/RI03oc4gphYvz/P9OE40AIgqJPv8Xw7InpPb5jTHmcNj6TcBqnT3agexEDPlG1KGGnCmtX6UOKEP1T0OUZ+SphbsnoZL4qDon6XxHY8xMI7oBWVIlD87KG6nXPL0h1MhFcDbMULZ6kwW1SHOaS8EbbQjCs3WKUiGYY4sEm7bFq/Hw3iYF9v0gQLtlqULl7rMMSxzqz9AvF9kBKTDJbatgiBpjl0dk75ErIrnZFgNAi6iGrVYv/dmg8BMuitMfKNRodfO5xaNByD97D7DyP1xwKd/0Q+RS1WgUCFYjDFbZ+MHl512wn1kEHNZzWWojmm7kV7ezHglQaQyWy2KSF9eObfXAvaLj7jCUGa5JOdqJSxxwyVLtVGRwqHZpcmaONhfGOkz/Z5yPMN1TdGzONygfxte2iv8hmcX0o08p14Of4ta6F+suDRJh0+IVTDW+dmkXMB+ivX3XAZXHU/diX9qgjOPhmJfgBuILsOiVSfUnfk8Sn3LSgYGUvwY43SVZQu/ADbOobXsSe0mYyPqXfrRcY71w1gvae8dp/rWla7oj7iBY9dZ2CWvDrEgcPQtXKmzlS3uASLcM=
skip_cleanup: true
overwrite: true
file: "${RELEASE_FILE}"
on:
all_branches: true
tags: true