summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Herlant <aerostitch@debian.org>2019-11-02 03:32:11 -0700
committerJoseph Herlant <aerostitch@debian.org>2019-11-02 03:32:11 -0700
commit4d032ffe4d5e40ffd3b7e35dc6951eab9f8c2b86 (patch)
tree91e18bda47796152c1450725aefa21e7f55d0557
parent270e1c7c820a57c9c4cd84a3a2c40fe2d2baef86 (diff)
downloadnavit-4d032ffe4d5e40ffd3b7e35dc6951eab9f8c2b86.tar.gz
Make sure git is installed on certain steps
-rw-r--r--.circleci/config.yml12
1 files changed, 9 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index c8b67ad29..36e1c794c 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -22,7 +22,9 @@ jobs:
<<: *defaults
steps:
- checkout
- - run: if scripts/check_need_build.sh; then circleci step halt; fi
+ - run: |
+ apt-get update && apt-get install -y git
+ if scripts/check_need_build.sh; then circleci step halt; fi
- run:
name: Id
command: cat /etc/*release
@@ -135,7 +137,9 @@ jobs:
- image: ubuntu:14.04
steps:
- checkout
- - run: if scripts/check_need_build.sh; then circleci step halt; fi
+ - run: |
+ apt-get update && apt-get install -y git
+ if scripts/check_need_build.sh; then circleci step halt; fi
- run:
name: Prepare the Windows build environment
command: |
@@ -159,7 +163,9 @@ jobs:
- image: navit/dockerfiles:wince
steps:
- checkout
- - run: if scripts/check_need_build.sh; then circleci step halt; fi
+ - run: |
+ apt-get update && apt-get install -y git
+ if scripts/check_need_build.sh; then circleci step halt; fi
- run:
name: Prepare the WinCE build environment
command: |