https://github.com/bcgsc/ntCard
Revision fbe5a31812dcfe398755a75832cf65dd59b20b39 authored by Johnathan Wong on 15 January 2020, 23:20:50 UTC, committed by Johnathan Wong on 15 January 2020, 23:20:50 UTC
1 parent 36b91df
Raw File
Tip revision: fbe5a31812dcfe398755a75832cf65dd59b20b39 authored by Johnathan Wong on 15 January 2020, 23:20:50 UTC
azure: remove unecessary code
Tip revision: fbe5a31
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
    displayName: Compiling ntCard
  - script: |
      make check
    displayName: Integration test
back to top