-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.travis.yml
43 lines (38 loc) · 962 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
sudo: false
language: bash
os:
- linux
addons:
apt:
packages:
- gperf
- python
- python-serial
before_install:
# Save path to the git respository
- PROJECT_PATH=$(pwd)
install:
# Install ESP32 toochain following steps as desribed
# in http://esp-idf.readthedocs.io/en/latest/linux-setup.html
#
# Get required packages - already done above, see addons: apt: packages:
# - sudo apt-get install git wget make libncurses-dev flex bison gperf python python-serial
# Prepare directory for the toolchain
git submodule update --init --recursive
script:
- make keys
- cp keys/pubkey.inc esp32-recv/components/bpp-recv
- make
- source set_env.sh
- cd esp32-recv
- make defconfig
- make
notifications:
irc:
channels:
- "chat.freenode.net#sha2017-badge"
- "chat.freenode.net#sha2017-badge-dev"
on_success: change
on_failure: always
use_notice: true
skip_join: true