From 0e3e567207189eb457d55d9a38822e88f5f94ae7 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Mon, 9 Apr 2018 20:38:23 -0700 Subject: [PATCH] Remove eyesore --- .appveyor.yml | 49 ------------- .clang_complete | 6 -- .gitattributes | 7 -- .pep8 | 2 - .travis.yml | 166 --------------------------------------------- .ycm_extra_conf.py | 15 ---- 6 files changed, 245 deletions(-) delete mode 100644 .appveyor.yml delete mode 100644 .clang_complete delete mode 100644 .gitattributes delete mode 100644 .pep8 delete mode 100644 .travis.yml delete mode 100644 .ycm_extra_conf.py diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index 0b89cb11..00000000 --- a/.appveyor.yml +++ /dev/null @@ -1,49 +0,0 @@ -version: "{build}" -image: Visual Studio 2017 -platform: x64 - -clone_folder: C:\projects\cquery - -install: - - git submodule update --init - -environment: - CLICOLOR_FORCE: 1 - matrix: - - MSYSTEM: MINGW64 - - MSYSTEM: MSVC - -matrix: - fast_finish: true # set this flag to immediately finish build once one of the jobs fails. - allow_failures: - - platform: x64 - -build_script: - - ps: | - If ($Env:MSYSTEM -Eq "MSVC") { - $dir = "cquery-${env:appveyor_build_version}-win64" - cd C:\projects\cquery - python waf configure --msvc_version="msvc 15.0" - python waf build - mkdir "${dir}\build\release\bin" -ea 0 - mkdir "${dir}\build\release\lib\LLVM-6.0.0-win64\lib\clang\6.0.0\" - copy "build\release\bin\*" "${dir}\build\release\bin" - copy -recurse "build\LLVM-6.0.0-win64\lib\clang\6.0.0\include" "${dir}\build\release\lib\LLVM-6.0.0-win64\lib\clang\6.0.0\" - 7z a -tzip "C:\projects\cquery\${dir}.zip" "${dir}" - } Else { - C:\msys64\usr\bin\bash -lc @' - pacman -S --needed --noconfirm mingw-w64-x86_64-clang python - cd /c/projects/cquery - CXXFLAGS=-Wall /usr/bin/python waf configure build --llvm-config llvm-config 2>&1 - '@ - } - - set PATH=%PATH%;C:\msys64\%MSYSTEM%\bin - - build\release\bin\cquery --ci --log-all-to-stderr --test-unit - - IF "%MSYSTEM%"=="MSVC" build\release\bin\cquery --ci --log-all-to-stderr --test-index - -artifacts: - - path: 'cquery-*.zip' - -cache: - - C:\projects\cquery\build\LLVM-6.0.0-win64.exe - - C:\projects\cquery\build\LLVM-6.0.0-win64\ diff --git a/.clang_complete b/.clang_complete deleted file mode 100644 index d0dac336..00000000 --- a/.clang_complete +++ /dev/null @@ -1,6 +0,0 @@ --std=c++11 --Ithird_party/rapidjson/include --IC:/Program Files/LLVM/include --std=c++11 --fms-compatibility --fdelayed-template-parsing \ No newline at end of file diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 5fa46b3e..00000000 --- a/.gitattributes +++ /dev/null @@ -1,7 +0,0 @@ -# By default, use platform specific endings. -*.h text eol=auto -*.cpp text eol=auto -*.cc text eol=auto - -# Tests must always be crlf -index_tests/** text eol=crlf diff --git a/.pep8 b/.pep8 deleted file mode 100644 index 1fe66c12..00000000 --- a/.pep8 +++ /dev/null @@ -1,2 +0,0 @@ -[pep8] -indent-size=2 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c9ac2e61..00000000 --- a/.travis.yml +++ /dev/null @@ -1,166 +0,0 @@ -dist: trusty -sudo: false -language: c++ - -env: - global: - - COMPILER=g++ - -# Default --recursive (rapidjson/thirdparty/gtest) is unnecessary -git: - submodules: false - depth: 1 - -before_install: - - git submodule update --init - -addons: - apt: - sources: &apt_sources - - ubuntu-toolchain-r-test - - llvm-toolchain-precise-3.5 - - llvm-toolchain-trusty-5.0 - -compiler: clang -os: linux - -cache: - directories: - - build/clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/ - - build/clang+llvm-6.0.0-x86_64-apple-darwin/ - -matrix: - fast_finish: true - include: - - env: COMPILER=g++-5 - compiler: gcc - addons: &gcc5 - apt: - packages: ["g++-5"] - sources: *apt_sources - - - env: COMPILER=g++-7 - compiler: gcc - addons: &gcc7 - apt: - packages: ["g++-7"] - sources: *apt_sources - - - env: COMPILER=clang++-3.5 - addons: &clang35 - apt: - packages: ["clang-3.5", "g++-7"] - sources: *apt_sources - - - env: COMPILER=clang++-5.0 - addons: &clang50 - apt: - packages: ["clang-5.0", "g++-7"] - sources: *apt_sources - - - env: COMPILER=clang++ - osx_image: xcode9.1 - os: osx - - - env: COMPILER=g++-7 - compiler: gcc - osx_image: xcode9.1 - os: osx - - - allow_failures: - - # macOS takes too long. - - #- env: COMPILER=clang++ - # osx_image: xcode9.1 - # os: osx - - #- env: COMPILER=g++-7 - # compiler: gcc - # osx_image: xcode9.1 - # os: osx - - # gcc builds that should be fixed at some point - - #- env: COMPILER=g++-5 - # compiler: gcc - - #- env: COMPILER=g++-6 - # compiler: gcc - - #- env: COMPILER=g++-7 - # compiler: gcc - - #- env: COMPILER=g++-5 - # compiler: gcc - # osx_image: xcode9.1 - # os: osx - - #- env: COMPILER=g++-6 - # compiler: gcc - # osx_image: xcode9.1 - # os: osx - - #- env: COMPILER=g++-7 - # compiler: gcc - # osx_image: xcode9.1 - # os: osx - -install: - - | - if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then - if [[ "${COMPILER}" == "g++-5" ]]; then - brew install gcc@5 - brew link --overwrite gcc@5 - fi - if [[ "${COMPILER}" == "g++-6" ]]; then - brew install gcc@6 - brew link --overwrite gcc@6 - fi - if [[ "${COMPILER}" == "g++-7" ]]; then - brew install gcc@7 - brew link --overwrite gcc@7 - fi - fi - - - | - if [[ "${COMPILER}" == g++* ]]; then - export J="-j1" - fi - - - export CXX="${COMPILER}" - -before_script: - - ${CXX} --version - -script: - - travis_retry ./waf configure - - ./waf build ${J} - - ./build/release/bin/cquery --ci --log-all-to-stderr --test-unit - - ./build/release/bin/cquery --ci --log-all-to-stderr --test-index - -notifications: - email: false - irc: - channels: - - "ircs://chat.freenode.net:6697/#cquery" - template: - - "[ %{repository_slug}#%{commit}] %{result} on %{branch} by %{author} (%{build_url} )" - -before_deploy: - #- zip -r build/cquery-$TRAVIS_TAG-$TRAVIS_OS_NAME.zip build/release/bin/ build/release/lib/clang+llvm-*/lib/libclang.* build/release/lib/clang+llvm-*/lib/clang/5.0.1/include/ - - ci/before_deploy.sh - -deploy: - provider: releases - api_key: - secure: Ahv4Wp1wveWILqp6HB8UmsXwwfZ103fuJV/u6W4oJFRpnbIXRCGFKaDR1Ql0hsHduKFd/76nNQGSVvNNuTXlWaK2n0bTu1EZ4VYmXk7Q7gn4ROP9XFrIZu0c9XKJ/bzehCLj3t6KT0R5MK5gQe+cBmx4S5uGsGG5/nM+GZpE1N4craRCh64UNXMvIx20sW4VQcgj1Ccrc/6Skb3HET7PKbY+IB/LXnaF3nM6V71LxKW2wlakBmzzaNatQ46QOcOCduY4edE8FqBs7yZ0eFktNZusmjiaZT12t0r1hVe0O8e0ER3u9/c3t+hbPUplMR2FAPBZXojgLVhSfFtBaj45T74oCIi0eUaDeS+Oxl6IzgyVho9RurOtaru3hLOVoaD9wR6lGhj6Nz/2Na3lOIorxHfAZ4OgUmluoFLCynO4ylMD03fMBGBshChnmYbrxLw0xLZP2005WUAj8JN64QOmFmLt3gV7TfVldSFHuwoZyESfkXPRM1Xn8RtgFi/89p4jtPtyBFLSaeDggCwfWEMfADCfJ/j8lXtAPdyEINoaKrxkH8qCPoMLNPXE7JhkP8L0Smdq4cFUEXg3wKWM2hXmWmh2Y25BAyh4qu9CrDPd5qqFcXMtyix4ZjmThLFs/oKYbbMUo4FQ5xT5dpt/VZOi4NpcAj0G/M3jWhu85tMdtTc= - #file: build/cquery-$TRAVIS_TAG-$TRAVIS_OS_NAME.zip - file: build/cquery-$TRAVIS_TAG-x86_64-apple-darwin.tar.xz - file: build/cquery-$TRAVIS_TAG-x86_64-unknown-linux-gnu.tar.xz - skip_cleanup: true - on: - repo: cquery-project/cquery - tags: true - diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py deleted file mode 100644 index 385f768c..00000000 --- a/.ycm_extra_conf.py +++ /dev/null @@ -1,15 +0,0 @@ -def FlagsForFile( filename, **kwargs ): - return { - 'flags': [ - '-xc++', - '-std=c++11', - '-DLOGURU_WITH_STREAMS=1', - '-Isrc/', - '-Ithird_party/', - '-Ithird_party/doctest', - '-Ithird_party/rapidjson/include', - '-Ithird_party/sparsepp', - '-Ithird_party/loguru', - '-Ibuild/clang+llvm-4.0.0-x86_64-linux-gnu-ubuntu-14.04/include' - ] - }