Remove travis-ci

This commit is contained in:
Christian Treffs 2020-08-12 21:19:48 +02:00
parent 2c5d6640ba
commit 63c6476065
No known key found for this signature in database
GPG Key ID: 49A4B4B460BE3ED4
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
os:
- linux
- osx
language: generic
sudo: required
dist: bionic
osx_image: xcode11
env: SWIFT_VERSION=5.1
install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"; fi
script:
- swift package reset
- swift build
- swift test --enable-code-coverage
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then xcrun llvm-cov show -instr-profile=.build/debug/codecov/default.profdata .build/debug/FirebladeECSPackageTests.xctest/Contents/MacOS/FirebladeECSPackageTests > fireblade_ecs_coverage.txt; fi
after_success:
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
bash <(curl -s https://codecov.io/bash);
fi