aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils.Cryptography/argon2/.travis.yml
blob: 265fc48c0c1100bc877be83a3017bd61f37056d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
language: c

compiler:
  - clang
  - gcc

os:
  - linux
  - osx

# Clang on Linux needs to run in a VM to use ASAN.
# See: https://github.com/travis-ci/travis-ci/issues/9033
matrix:
  exclude:
    - compiler: clang
      os: linux
  include:
    - compiler: clang
      os: linux
      sudo: true

script: make && make testci

after_success:
  - bash <(curl -s https://codecov.io/bash)