Created
March 27, 2017 18:31
-
-
Save ratmandu/1861ae8db95ab8b7fdf4f38714aa2462 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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