Commit 966adee2 authored by Samir Halilcevic's avatar Samir Halilcevic

Fix parallel

parent a82c5b26
#! /bin/sh
#! /bin/bash
BUILD_DIR=$1
echo "This is a very hard test"
AUTOBAHN_CONFIG=$(cat << EOF
{
"options": {},
"outdir": "./reports/",
"servers": [
{
"agent": "CAF Websocket Autobahn Driver",
"url": "ws://localhost:7788"
}
],
"cases": [ "*" ],
"exclude-cases": [],
"exclude-agent-cases": {}
}
EOF
)
HERE=$(dirname "$0")
"${BUILD_DIR}"/libcaf_net/caf-net-autobahn-driver -p 7788 >/dev/null &
ls "$HERE"
ls "$HERE/.."
ls "$HERE/../.."
wstest -m fuzzingclient -s /config/fuzzingclient.json
exit 1
kill %1
......@@ -167,6 +167,7 @@ pipeline {
getSources(config)
}
}
stage('Build and Test') {
parallel {
stage('Build') {
steps {
......@@ -207,6 +208,7 @@ pipeline {
}
}
}
}
stage('Notify') {
steps {
collectResults(config, PrettyJobName)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment