summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorJoseph Herlant <aerostitch@users.noreply.github.com>2018-05-24 06:01:16 -0700
committerjkoan <jkoan@users.noreply.github.com>2018-05-24 15:01:16 +0200
commit2523dd28f42214ddf83367873b3163225045df3c (patch)
tree526972dcff39caca70d887bf3184f8796e2accba /.circleci
parent01f62133c96e24b8b7df516007d7ef62af3a5759 (diff)
downloadnavit-2523dd28f42214ddf83367873b3163225045df3c.tar.gz
change:ci:rename ci folder to scripts (#593)
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml32
1 files changed, 16 insertions, 16 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index cb190d8e5..af3daeb79 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -13,17 +13,17 @@ jobs:
- run:
name: Setup requirements
command: |
- bash ci/setup_common_requirements.sh
+ bash scripts/setup_common_requirements.sh
apt-get install -y libpng12-dev libfreetype6-dev libdbus-glib-1-dev libgtk2.0-dev curl
- run:
name: Build for Linux
- command: bash ci/build_linux.sh
+ command: bash scripts/build_linux.sh
- store_artifacts:
path: linux/_CPack_Packages
- run:
name: Update Navit-Download-Center
command: |
- bash ci/update_download_center.sh
+ bash scripts/update_download_center.sh
run_doxygen:
<<: *defaults
steps:
@@ -36,7 +36,7 @@ jobs:
command: cd navit && doxygen
- run:
name: Update results to Github
- command: bash ci/update_doxygen.sh
+ command: bash scripts/update_doxygen.sh
- store_artifacts:
path: /root/project/doc
build_android:
@@ -130,14 +130,14 @@ jobs:
- run:
name: Build for Windows
command: |
- bash ci/setup_common_requirements.sh
- bash ci/build_win32.sh
+ bash scripts/setup_common_requirements.sh
+ bash scripts/build_win32.sh
- store_artifacts:
path: win32/navit.exe
- run:
name: Update Navit-Download-Center
command: |
- bash ci/update_download_center.sh
+ bash scripts/update_download_center.sh
build_wince:
docker:
- image: navit/dockerfiles:wince
@@ -146,16 +146,16 @@ jobs:
- run:
name: Prepare the WinCE build environment
command: |
- bash ci/setup_wince.sh
+ bash scripts/setup_wince.sh
- run:
name: Build for Windows CE
- command: bash ci/build_wince.sh
+ command: bash scripts/build_wince.sh
- store_artifacts:
path: wince/output
- run:
name: Update Navit-Download-Center
command: |
- bash ci/update_download_center.sh
+ bash scripts/update_download_center.sh
build_tomtom_minimal:
<<: *defaults
docker:
@@ -165,17 +165,17 @@ jobs:
- run:
name: Setup common requirements
command: |
- bash ci/setup_common_requirements.sh
+ bash scripts/setup_common_requirements.sh
- run:
name: Build for Tomtom (minimal)
command: |
- bash ci/build_tomtom_minimal.sh
+ bash scripts/build_tomtom_minimal.sh
- store_artifacts:
path: /output
- run:
name: Update Navit-Download-Center
command: |
- bash ci/update_download_center.sh
+ bash scripts/update_download_center.sh
build_tomtom_plugin:
<<: *defaults
docker:
@@ -185,17 +185,17 @@ jobs:
- run:
name: Setup common requirements
command: |
- bash ci/setup_common_requirements.sh
+ bash scripts/setup_common_requirements.sh
- run:
name: Build for Tomtom (plugin)
command: |
- bash ci/build_tomtom_plugin.sh
+ bash scripts/build_tomtom_plugin.sh
- store_artifacts:
path: /output
- run:
name: Update Navit-Download-Center
command: |
- bash ci/update_download_center.sh
+ bash scripts/update_download_center.sh
merge_trunk_in_master:
<<: *defaults
steps: