-
Notifications
You must be signed in to change notification settings - Fork 17
/
.travis.yml
42 lines (36 loc) · 937 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
language: cpp
matrix:
include:
- env:
- OCPN_TARGET=stretch-armhf
- OCPN_STABLE_REPO=david-register/ocpn-plugins-stable
- OCPN_UNSTABLE_REPO=david-register/ocpn-plugins-unstable
- DOCKER_IMAGE=balenalib/raspberry-pi-debian:stretch
services:
- docker
script:
- ./ci/generic-build-raspbian-armhf.sh
- sh -c "cd build; /bin/bash < upload.sh"
- python3 ci/git-push
- env:
- OCPN_TARGET=buster-armhf
- DOCKER_IMAGE=balenalib/raspberry-pi-debian:buster
services:
- docker
script:
- ./ci/generic-build-raspbian-armhf.sh
- sh -c "cd build; /bin/bash < upload.sh"
- python3 ci/git-push
- env:
- OCPN_TARGET=bionic-arm64
- DOCKER_IMAGE=arm64v8/ubuntu:18.04
services:
- docker
script:
- ./ci/travis-build-ubuntu-arm64.sh
- sh -c "cd build; /bin/bash < upload.sh"
- python3 ci/git-push
branches:
only:
- master
- build