summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorJoseph Herlant <aerostitch@users.noreply.github.com>2019-11-04 09:18:57 -0800
committerGitHub <noreply@github.com>2019-11-04 09:18:57 -0800
commit39f745bc282c45443deef8e13b381f207207da58 (patch)
tree50217fca64be4ccdcbe3871df72f34ebddc121f2 /.circleci
parentf334e21516af6c1cb0b96d0d341d262586c33b9b (diff)
downloadnavit-39f745bc282c45443deef8e13b381f207207da58.tar.gz
update:CI: skip the build steps if the change is only for documentation (#941)
* update:CI: skip the build steps if the change is only for documentation * Use spaces not comma to separate array elements (codefactor) * unrelated: fix missing checkstyle result storage * Testing if the circleci command works in our custom images * Make sure git is installed on certain steps * local -n is not supported everywhere * git package on the old image for wince is called git-core * Just do an exit 1 when we are on a tag * Revert the testing part. Now ready for merge * Fix some variables names forgotten in the refactoring * Revert the testing part. Now ready for merge
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml22
1 files changed, 18 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index bb542a94d..986ffa2c2 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -14,10 +14,17 @@ jobs:
- run:
name: Run CheckStyle Test
command: ./gradlew checkstyleMain
+ - store_artifacts:
+ name: Store checkstyle report
+ path: navit/android/checkstyle
+ destination: reports
build_linux:
<<: *defaults
steps:
- checkout
+ - 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
@@ -39,6 +46,7 @@ jobs:
<<: *defaults
steps:
- checkout
+ - run: if scripts/check_need_build.sh; then circleci step halt; fi
- run:
name: Install doxygen and other essentials
command: apt-get update && apt-get -y install doxygen ca-certificates git rsync
@@ -54,6 +62,7 @@ jobs:
machine: true
steps:
- checkout
+ - run: if scripts/check_need_build.sh; then circleci step halt; fi
- run:
name: install docker
command: circleci-install docker
@@ -75,6 +84,7 @@ jobs:
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
steps:
- checkout
+ - run: if scripts/check_need_build.sh; then circleci step halt; fi
- run:
name: Id
command: cat /etc/*release
@@ -116,10 +126,6 @@ jobs:
name: Store Lint reports
path: navit/android/build/reports
destination: reports
- - store_artifacts:
- name: Store checkstyle report
- path: /home/circleci/code/navit/android/checkstyle
- destination: reports
- store_test_results:
path: test-results
- run:
@@ -131,6 +137,9 @@ jobs:
- image: ubuntu:14.04
steps:
- checkout
+ - 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: |
@@ -154,6 +163,9 @@ jobs:
- image: navit/dockerfiles:wince
steps:
- checkout
+ - run: |
+ apt-get update && apt-get install -y git-core
+ if scripts/check_need_build.sh; then circleci step halt; fi
- run:
name: Prepare the WinCE build environment
command: |
@@ -173,6 +185,7 @@ jobs:
- image: navit/tomtom-ng
steps:
- checkout
+ - run: if scripts/check_need_build.sh; then circleci step halt; fi
- run:
name: Setup common requirements
command: |
@@ -193,6 +206,7 @@ jobs:
- image: navit/tomtom-ng
steps:
- checkout
+ - run: if scripts/check_need_build.sh; then circleci step halt; fi
- run:
name: Setup common requirements
command: |