8000 Expand git history and install gettext · unixjazz/circuitpython@2f15d9f · GitHub
[go: up one dir, main page]

10000 Skip to content

Commit 2f15d9f

Browse files
committed
Expand git history and install gettext
1 parent fba0665 commit 2f15d9f

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

azure-pipelines.yml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)
0