mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
f030b163de
Left over from Ubuntu Precise?
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
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"
|
|
|
|
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
|
|
|
|
script:
|
|
# TODO: Introduce top-level Makefile, this is lame.
|
|
- mkdir build/
|
|
- pushd build/
|
|
- cmake ..
|
|
- make release
|
|
- popd
|
|
|
|
addons:
|
|
artifacts:
|
|
paths:
|
|
- $(ls build/firmware/portapack-h1-firmware-*.tar.bz2 | tr "\n" ":")
|
|
- $(ls build/firmware/portapack-h1-firmware-*.zip | tr "\n" ":")
|