Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automate C code formatting [3/3] #397

Merged
merged 2 commits into from
Feb 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@ jobs:
# wait for emulator to fully boot before running tests
- run: timeout 10m /bin/bash -c 'while true; do $ANDROID_HOME/platform-tools/adb wait-for-device logcat -b events -d | grep -i boot_progress_enable_screen && break; date; sleep 3; done'
- run: ./gradlew --no-daemon --no-parallel --max-workers=2 connectedAndroidTest

analyze:
docker:
- image: cossacklabs/build:ubuntu-bionic
environment:
CLANG_FORMAT: clang-format-7
CLANG_TIDY: clang-tidy-7
steps:
- checkout
- run: git submodule update --init
- run: make fmt_check ENGINE=boringssl
- run: make fmt_check ENGINE=openssl

x86_64:
docker:
- image: cossacklabs/android-build:2019.01
Expand Down Expand Up @@ -190,6 +203,7 @@ workflows:
version: 2
tests:
jobs:
- analyze
- android
- x86_64
- php5
Expand Down