From 2abc00693cc99f277c7c8fe1a201ec33becb01f1 Mon Sep 17 00:00:00 2001 From: iphydf Date: Sun, 16 Sep 2018 13:58:57 +0000 Subject: Format yaml files according to yamllint's requirements. Also remove branch filter for appveyor. We only have a single branch in every repository. Development happens in forks. --- .circleci/config.yml | 43 ++++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 21 deletions(-) (limited to '.circleci/config.yml') diff --git a/.circleci/config.yml b/.circleci/config.yml index 0d204404..2182fefb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,40 +1,41 @@ +--- version: 2 workflows: version: 2 build_linux: jobs: - - asan - - tsan + - asan + - tsan jobs: asan: working_directory: ~/work docker: - - image: ubuntu + - image: ubuntu steps: - - checkout - - run: &apt_install - apt update && - apt install -y --no-install-recommends - clang - cmake - libconfig-dev - libgtest-dev - libopus-dev - libsodium-dev - libvpx-dev - ninja-build - pkg-config - - run: CC=clang .circleci/cmake-asan + - checkout + - run: &apt_install + apt update && + apt install -y --no-install-recommends + clang + cmake + libconfig-dev + libgtest-dev + libopus-dev + libsodium-dev + libvpx-dev + ninja-build + pkg-config + - run: CC=clang .circleci/cmake-asan tsan: working_directory: ~/work docker: - - image: ubuntu + - image: ubuntu steps: - - checkout - - run: *apt_install - - run: CC=clang .circleci/cmake-tsan + - checkout + - run: *apt_install + - run: CC=clang .circleci/cmake-tsan -- cgit v1.2.3