Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,29 @@ jobs:
- stage: test
name: Socketcan
os: linux
arch: amd64
dist: trusty
python: "3.6"
sudo: required
env: TEST_SOCKETCAN=TRUE

# arm64 builds
- stage: test
name: Linux arm64
os: linux
arch: arm64
language: generic
sudo: required
addons:
apt:
update: true
env: HOST_ARM64=TRUE
before_install:
- sudo apt install -y python3 python3-pip
# Travis doesn't seem to provide Python binaries yet for this arch
- sudo update-alternatives --install /usr/bin/python python $(which python3) 10
- sudo update-alternatives --install /usr/bin/pip pip $(which pip3) 10

# testing on OSX
- stage: test
os: osx
Expand Down