1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00
mal/.travis.yml

20 lines
665 B
YAML
Raw Normal View History

sudo: required
# matrix layout based on:
# https://github.com/libressl-portable/portable/blob/9e090286b55def5ca2c0cc375c65023a70d8796e/.travis.yml
2015-10-09 19:55:55 +03:00
matrix:
include:
- {env: IMPL=objc NO_DOCKER=1, os: osx, osx_image: xcode7}
- {env: IMPL=swift NO_DOCKER=1, os: osx, osx_image: xcode7.3}
2016-08-01 07:25:23 +03:00
- {env: IMPL=swift3 NO_DOCKER=1, os: osx, osx_image: xcode8}
- {env: IMPL=swift4 NO_DOCKER=1, os: osx, osx_image: xcode10}
2019-11-08 19:57:33 +03:00
- {env: IMPL=swift5 NO_DOCKER=1, os: osx, osx_image: xcode11}
script:
# Build, test, perf
- ./ci.sh build ${IMPL}
- ./ci.sh test ${IMPL}
- STEP=stepA REGRESS=1 HARD=1 OPTIONAL=0 ./ci.sh test ${IMPL}
- ./ci.sh perf ${IMPL}