File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed
Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,30 @@ jobs:
1818 TRAVIS_BOARDS : ' feather_m0_express'
1919
2020 steps :
21- - script : |
21+ - checkout : self
22+ fetchDepth : 6
23+ submodules : recursive
24+ - bash : |
25+ LAST_TAG=`git ls-remote --quiet --tags --sort=version:refname | egrep -o "refs/tags/[0-9]+.*\$" | tail -n 1`
26+ git fetch --depth 1 origin $LAST_TAG:$LAST_TAG
27+ git describe --dirty --always --tags
28+ displayName: 'Expand git history'
29+ - bash : |
2230 wget https://s3.amazonaws.com/adafruit-circuit-python/gcc-arm-embedded_7-2018q2-1~xenial1_amd64.deb
2331 sudo dpkg -i gcc-arm-embedded*_amd64.deb
24- displayName: 'Install GCC'
25- - script : |
32+ displayName: 'Install ARM GCC'
33+ - bash : |
34+ sudo apt-get install gettext
35+ displayName: 'Install deps'
36+ - bash : |
2637 gcc --version
2738 arm-none-eabi-gcc --version
2839 python3 --version
2940 displayName: 'Print versions'
30- - script : |
41+ - bash : |
3142 make -C mpy-cross -j2
3243 displayName: 'Build mpy-cross'
33- - script : |
44+ - bash : |
3445 python3 -u build_release_files.py
3546 displayName: 'Build board'
3647 workingDirectory: 'tools'
You can’t perform that action at this time.
0 commit comments