Skip to content
Snippets Groups Projects
Commit 59222025 authored by Reiner Jung's avatar Reiner Jung
Browse files

Added Jenkinsfile annd dummy benchmark script.

parent c7eea9a9
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="frameworks/Kieker/src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
<classpathentry kind="lib" path="lib/commons-cli-1.2.jar"/>
<classpathentry kind="lib" path="frameworks/Kieker/lib/kieker-1.11-SNAPSHOT_aspectj.jar"/>
<classpathentry kind="output" path="build-eclipse"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="output" path="bin/default"/>
</classpath>
......@@ -10,6 +10,11 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>de.walware.statet.r.builders.RSupport</name>
<arguments>
......@@ -20,5 +25,6 @@
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>de.walware.statet.base.StatetNature</nature>
<nature>de.walware.statet.r.RNature</nature>
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
</natures>
</projectDescription>
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.5
org.eclipse.jdt.core.compiler.source=11
org.eclipse.jdt.core.formatter.align_fields_grouping_blank_lines=2147483647
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
......
#!/usr/bin/env groovy
pipeline {
agent {
docker {
image 'kieker/kieker-build:openjdk8'
alwaysPull true
args env.DOCKER_ARGS
}
}
environment {
DOCKER_ARGS = ''
}
options {
buildDiscarder logRotator(artifactNumToKeepStr: '10')
timeout(time: 150, unit: 'MINUTES')
retry(1)
parallelsAlwaysFailFast()
}
triggers {
cron(env.BRANCH_NAME == 'master' ? '@daily' : '')
}
stages {
stage('Initial Cleanup') {
steps {
sh './gradlew clean'
}
}
stage('Compile') {
steps {
sh './gradlew compileJava'
}
}
stage('Run Benchmark') {
steps {
sh 'frameworks/Kieker/scripts/run-benchmark.sh'
}
}
post {
cleanup {
deleteDir()
cleanWs()
}
}
}
}
#!/bin/bash
echo "No benchmark"
# end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment