portapack-mayhem/.travis.yml

34 lines
1.0 KiB
YAML
Raw Normal View History

2015-09-01 01:10:07 -04:00
language: cpp
cache: apt
notifications:
irc:
channels:
- "chat.freenode.net#portapack"
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
- "Change view : %{compare_url}"
- "Build details : %{build_url}"
# TODO: The "build_number.1" in this URL is almost certainly wrong, but correct value not available from Travis?
- "Firmware download : https://portapack-h1-builds.s3.amazonaws.com/%{repository_slug}/%{build_number}/%{build_number}.1/build/firmware/portapack-h1-firmware-%{commit}.tar.bz2"
2017-08-07 01:49:05 -04:00
before_install:
- sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
- sudo apt-get update -q
- sudo apt-get install gcc-arm-embedded -y
2015-09-01 14:49:50 -04:00
2015-09-01 01:32:31 -04:00
script:
2015-09-01 18:07:31 -04:00
# TODO: Introduce top-level Makefile, this is lame.
2016-06-30 19:00:08 -04:00
- mkdir build/
- pushd build/
- cmake ..
2015-09-01 17:36:30 -04:00
- make release
2015-09-01 18:07:31 -04:00
- popd
2015-09-01 17:36:30 -04:00
addons:
artifacts:
paths:
- $(ls build/firmware/portapack-h1-havoc-*.tar.bz2 | tr "\n" ":")
- $(ls build/firmware/portapack-h1-havoc-*.zip | tr "\n" ":")