mirror of
https://git.sr.ht/~sircmpwn/mkproof
synced 2024-12-03 23:18:13 +01:00
87d922c6c6
git-subtree-dir: argon2i git-subtree-mainline: 3e7a084af1a451c4d92dc09d3dfccec3b8c2fb4e git-subtree-split: 440ceb9612d5a20997e3e12728542df2de713ca4
26 lines
386 B
YAML
26 lines
386 B
YAML
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)
|