File: appveyor.yml

package info (click to toggle)
opencensus-java 0.24.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,044 kB
  • sloc: java: 57,166; xml: 1,020; sh: 117; python: 39; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 518 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
install:
  - git submodule update --init --recursive

build_script:
  # The Gradle build script runs the integration tests of contrib/agent using different Java
  # versions. %JAVA_HOMES% lists the home directories of the JDK installations used for
  # integration testing. Also see https://www.appveyor.com/docs/build-environment/#java.
  - set JAVA_HOMES=C:\Program Files\Java\jdk1.8.0\jre
  - gradlew.bat clean assemble check --stacktrace
  - pushd examples && gradlew.bat clean assemble check --stacktrace && popd