Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ddprof-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def cloneAPTask = tasks.register('cloneAsyncProfiler') {
if (!targetDir.exists()) {
println "Cloning missing async-profiler git subdirectory..."
exec {
commandLine 'git', 'clone', '--branch', branch_lock, '--depth', '1', 'https://github.com/datadog/async-profiler.git', targetDir.absolutePath
commandLine 'git', 'clone', '--branch', branch_lock, 'https://github.com/datadog/async-profiler.git', targetDir.absolutePath
}
exec {
workingDir targetDir.absolutePath
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ protected String getProfilerCommand() {
@Test
public void test() throws Throwable {
assumeFalse(Platform.isJ9() && isAsan()); // running this test on j9 and asan is weirdly crashy
assumeFalse(Platform.isJ9() && Platform.isJavaVersion(8)); // geting crash-failur in CI reliable; remove once that is fixed
assumeFalse(Platform.isJ9() && Platform.isJavaVersion(17)); // JVMTI::GetClassSignature() is reliably crashing on a valid 'class' instance
assumeFalse(Platform.isAarch64() && Platform.isMusl() && !Platform.isJavaVersionAtLeast(11)); // aarch64 + musl + jdk 8 will crash very often
registerCurrentThreadForWallClockProfiling();
Expand Down
2 changes: 1 addition & 1 deletion gradle/ap-lock.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
branch=dd/master
commit=b034e4c3141d0632fd60bc452d7532d84adad572
commit=87b7b42ec65be0a00a67e3f9451fb8e4d472b188
Loading