Skip to content

Commit

Permalink
removed windows from github actions because agent building doesn't wo…
Browse files Browse the repository at this point in the history
…rk on windows
  • Loading branch information
William Armiros committed Sep 1, 2020
1 parent 375a867 commit 0078bfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
1 change: 0 additions & 1 deletion .github/workflows/continuous_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
os:
- macos-latest
- ubuntu-latest
- windows-latest
java:
- 8
- 11
Expand Down
9 changes: 2 additions & 7 deletions aws-xray-agent-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,8 @@ tasks {
}

// Integration tests run on Windows and Unix in GitHub actions
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
jvmArgs("-javaagent:$buildDir\\libs\\disco\\disco-java-agent.jar=pluginPath=$buildDir\\libs\\disco\\disco-plugins",
"-Dcom.amazonaws.xray.strategy.tracingName=IntegTest")
} else {
jvmArgs("-javaagent:$buildDir/libs/disco/disco-java-agent.jar=pluginPath=$buildDir/libs/disco/disco-plugins",
"-Dcom.amazonaws.xray.strategy.tracingName=IntegTest")
}
jvmArgs("-javaagent:$buildDir/libs/disco/disco-java-agent.jar=pluginPath=$buildDir/libs/disco/disco-plugins",
"-Dcom.amazonaws.xray.strategy.tracingName=IntegTest")

// Cannot run tests until agent and all plugins are available
dependsOn(withType<Copy>())
Expand Down

0 comments on commit 0078bfd

Please sign in to comment.