We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74fd7c7 commit 5d1ff9eCopy full SHA for 5d1ff9e
Jenkinsfile
@@ -9,7 +9,10 @@ pipeline {
9
// switch to the directory and run test
10
dir('spring-petclinic/spring-petclinic-rest') {
11
sh """
12
-
+ apt-get update && apt-get install -y kmod linux-headers-generic bpfcc-tools
13
+
14
+ mkdir -p /sys/kernel/debug
15
+ mkdir -p /sys/kernel/tracing
16
# Download and install Keploy binary
17
curl --silent -O -L https://keploy.io/install.sh && sudo bash install.sh
18
@@ -21,6 +24,8 @@ pipeline {
21
24
# Print current directory for debugging
22
25
pwd
23
26
ls -la
27
+ mount -t debugfs nodev /sys/kernel/debug || true
28
+ mount -t tracefs nodev /sys/kernel/tracing || true
29
30
# Run keploy test
31
keploy test -c "java -jar target/spring-petclinic-rest-3.0.2.jar" --delay 20
0 commit comments