add platform include path for jni
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2024-12-03 11:49:22 -05:00
parent 289b5ee43e
commit ca604cab20
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ include_directories(src/fluid/includes)
set(JAVA_AWT_LIBRARY NotNeeded)
if(EXISTS "/tmp/jni/jdk/include")
include_directories(/tmp/jni/jdk/include)
include_directories(/tmp/jni/jdk/include/linux)
else()
find_package(JNI REQUIRED)
include_directories(${JNI_INCLUDE_DIRS})

2
Jenkinsfile vendored
View File

@ -101,7 +101,7 @@ pipeline {
}
post {
always {
junit testResults: 'out/build/default/Testing/**.xml', keepLongStdio: true, testDataPublishers: [[$class:'AttachmentPublisher']]
junit testResults: 'out/build/Testing/**.xml', keepLongStdio: true, testDataPublishers: [[$class:'AttachmentPublisher']]
}
}
}