https://github.com/bcgsc/ntCard
Revision 24d35c060840ab7389f3311c5bfd4a6a0a7c4b4c authored by Johnathan Wong on 23 January 2020, 17:22:40 UTC, committed by GitHub on 23 January 2020, 17:22:40 UTC
* The files in ntHash come from:
https://github.com/bcgsc/ntHash
Release 2.1.0
Downloaded using https://github.com/bcgsc/ntHash/archive/2.1.0.zip

* ntcard.cpp: use new ntHashIterator

* set up make distcheck CI

* azure: run make distcheck

* add Makefile needed for make distcheck

* Makefile.am: clean up downloaded files

* Makefile.am: add rm to code

* Makefile.am: use tabs

* Common: remove nthash.hpp

* Makefile.am: remove Common/nthash.hpp

* Common: remove ntHashIterator.hpp

* nthll.cpp: use vendored ntHashIterator.hpp

* Makefile.am: revert to previous ordering

* vendor/Makefile.am: add nthash.hpp
1 parent 8eb710f
Raw File
Tip revision: 24d35c060840ab7389f3311c5bfd4a6a0a7c4b4c authored by Johnathan Wong on 23 January 2020, 17:22:40 UTC
use ntHash 2.1.0 (#36)
Tip revision: 24d35c0
azure-pipelines.yml
jobs:
- job: linux
  pool:
    vmImage: Ubuntu 16.04
  steps:
  - script: |
      sudo apt-get update -qq
      sudo apt-get install -qq software-properties-common
      sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
      sudo apt-get update -qq
      sudo apt-get install -qq autoconf automake gcc g++ make
    displayName: Install common
  - script: |
      ./autogen.sh
      ./configure
      make distcheck
    displayName: Compiling and testing ntCard
  - script: |
      curl https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
      sudo apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main"
      sudo apt-get update
      sudo apt-get install -y --no-install-recommends clang-format-7
      sudo ln -s clang-format-7 /usr/bin/clang-format
    displayName: Install clang-format
  - script: make clang-format
    displayName: Run clang-format
back to top