Skip to content

Instantly share code, notes, and snippets.

@ratmandu
Created March 27, 2017 18:31
Show Gist options
  • Save ratmandu/1861ae8db95ab8b7fdf4f38714aa2462 to your computer and use it in GitHub Desktop.
Save ratmandu/1861ae8db95ab8b7fdf4f38714aa2462 to your computer and use it in GitHub Desktop.
image: ratmandu/avr-docker-build
build:
stage: build
script:
- today=`date '+%F-%T'`;
- echo `pwd`
- cd UC3/mainapp
- make -j4
- mv main.hex ../../uc3-build-$today.hex
# - mv main.elf ../../uc3-build-$today.elf
- cd ../..
- cd XMega/mainapp
- make -j4
- mv main.hex ../../xmega-build-$today.hex
artifacts:
paths:
- ./*.hex
# - ./*.elf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment