From 219c3e39968802d7c5bc5d9a99080380f295a7af Mon Sep 17 00:00:00 2001 From: Kenfe-Mickael Laventure Date: Mon, 24 Jul 2017 21:35:19 +0200 Subject: [PATCH] Disable coverage tests on Windows CI The content unit-tests fail on Windows atm as they are not taking Windows specific behavior in account. Signed-off-by: Kenfe-Mickael Laventure --- .appveyor.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 0a000b7df..16198f6a7 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -14,7 +14,8 @@ environment: before_build: - choco install -y mingw - - choco install codecov + # TODO: re-enable once the content unit-test have been updated to pass on windows + #- choco install codecov build_script: - bash.exe -lc "export PATH=/c/tools/mingw64/bin:/c/gopath/src/github.com/containerd/containerd/bin:$PATH ; mingw32-make.exe fmt" @@ -26,9 +27,11 @@ test_script: # TODO: need an equivalent of TRAVIS_COMMIT_RANGE # - GIT_CHECK_EXCLUDE="./vendor" TRAVIS_COMMIT_RANGE="${TRAVIS_COMMIT_RANGE/.../..}" C:\MinGW\bin\mingw32-make.exe dco - bash.exe -lc "export PATH=/c/tools/mingw64/bin:/c/gopath/src/github.com/containerd/containerd/bin:$PATH ; mingw32-make.exe integration" - - bash.exe -lc "export PATH=/c/tools/mingw64/bin:/c/gopath/src/github.com/containerd/containerd/bin:$PATH ; mingw32-make.exe coverage" - - bash.exe -lc "export PATH=/c/tools/mingw64/bin:/c/gopath/src/github.com/containerd/containerd/bin:$PATH ; mingw32-make.exe root-coverage" + # TODO: re-enable once the content unit-test have been updated to pass on windows + #- bash.exe -lc "export PATH=/c/tools/mingw64/bin:/c/gopath/src/github.com/containerd/containerd/bin:$PATH ; mingw32-make.exe coverage" + #- bash.exe -lc "export PATH=/c/tools/mingw64/bin:/c/gopath/src/github.com/containerd/containerd/bin:$PATH ; mingw32-make.exe root-coverage" on_success: # Note that, a Codecov upload token is not required. - - codecov -f coverage.txt + # TODO: re-enable once the content unit-test have been updated to pass on windows + #- codecov -f coverage.txt