-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
44 lines (34 loc) · 845 Bytes
/
.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
language: cpp
matrix:
include:
- os: linux
dist: xenial
- os: linux
dist: trusty
- os: osx
osx_image: xcode10.1
- os: osx
osx_image: xcode9.4
allow_failures:
- os: windows
before_script:
- git clone https://github.com/tensorflow/tensorflow.git
- cd tensorflow
- git checkout 49372a1c6e4e83f153c740996c88b6bf76ec1abf
script:
- git clone https://github.com/nyumaya/nyumaya_audio_recognition_lib.git
- cd nyumaya_audio_recognition_lib/
- git apply --unsafe-paths --directory=../ tflite.patch
- ../tensorflow/lite/tools/make/download_dependencies.sh
- cmake ./
- make
- ./test
deploy:
provider: releases
api_key: $GITHUB_TOKEN
file_glob: true
file: libnyumaya*
skip_cleanup: true
draft: true
on:
tags: true