File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,11 @@ environment:
4
4
matrix :
5
5
- job_name : Java 8
6
6
JAVA_HOME : C:\Program Files\Java\jdk1.8.0
7
- PYTHON : " C:\\ Python36-x64"
8
7
- job_name : Java 11
9
8
JAVA_HOME : C:\Program Files\Java\jdk11
10
- PYTHON : " C:\\ Python36-x64"
11
9
# - job_name: Java 16
12
10
# appveyor_build_worker_image: Visual Studio 2019
13
11
# JAVA_HOME: C:\Program Files\Java\jdk16
14
- # PYTHON: "C:\\Python36-x64"
15
-
16
- install :
17
- - set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
18
- - pip install codecov --user
19
12
20
13
build_script :
21
14
- ./gradlew assemble --no-daemon
@@ -24,7 +17,10 @@ test_script:
24
17
25
18
on_success :
26
19
- ./gradlew jacocoTestReport --no-daemon
27
- - python -m codecov -f build\reports\jacoco\test\jacocoTestReport.xml -F windows
20
+ - ps : |
21
+ $ProgressPreference = 'SilentlyContinue'
22
+ Invoke-WebRequest -Uri https://uploader.codecov.io/latest/windows/codecov.exe -Outfile codecov.exe
23
+ .\codecov.exe -f build\reports\jacoco\test\jacocoTestReport.xml -F windows
28
24
29
25
cache :
30
26
- C:\Users\appveyor\.gradle\caches
You can’t perform that action at this time.
0 commit comments