Skip to content
Snippets Groups Projects
Commit eef146c8 authored by Raghunandan Netrapalli Madhusudhan's avatar Raghunandan Netrapalli Madhusudhan
Browse files

setup pipeline

parent 877c26b3
No related branches found
No related tags found
No related merge requests found
......@@ -12,8 +12,6 @@
"ByEntityCondition_TimeHeadway",
"ByEntityCondition_TimeToCollision",
"Common",
"DynamicOSMPSensorDataToTUStepper",
"DynamicSSPStepper",
"LocalizationOnJunction",
"ObjectAboveRoad",
"ObjectOfTypeRoadMark",
......@@ -28,8 +26,6 @@
"OSCAction_SpeedAction_Step",
"OSCAction_TeleportAction",
"Pedestrian_Trajectory",
"StaticOSMPSensorDataToTUStepper",
"StaticSSPStepper",
"Sensor_Latency",
"SupplementaryTrafficSigns",
"TrafficJam",
......@@ -136,13 +132,6 @@
"Delay": [
"OSCAction_RemoveAgentWithDelay"
],
"TUStepCtrl":
[
"StaticOSMPSensorDataToTUStepper",
"DynamicOSMPSensorDataToTUStepper",
"StaticSSPStepper",
"DynamicSSPStepper"
],
"TrafficLight":
[
"TrafficLight"
......@@ -586,19 +575,6 @@
"Sensor0_DetectedAgents": "str"
}
},
"TUStepCtrl":
{
"config_sets": [
"TUStepCtrl"
],
"duration": 2,
"invocations": 1,
"description": "Agent is moved by the trafficUpdateStepper",
"queries": [
"count(AgentId | (AgentId==0 and Timestep > 0 and VelocityEgo > 0.14 and VelocityEgo < 0.142)) == 20"
],
"success_rate": 1
},
"TrafficLightCheckPhases":
{
"config_sets": [
......
......@@ -149,25 +149,10 @@ spec:
}
}
}
// stage('Windows: Deploy') {
// when {
// anyOf {
// tag pattern: "v.*", comparator: "REGEXP"
// branch "develop"
// }
// }
// steps {
// sshagent ( ['projects-storage.eclipse.org-bot-ssh']) {
// bat 'C:\\msys64\\usr\\bin\\bash -lc repo/utils/ci/scripts/publish_artifacts.sh'
// }
// }
// }
}
post {
always {
bat 'subst W: /d'
// archiveArtifacts allowEmptyArchive: true, artifacts: 'artifacts/**', followSymlinks: false
junit allowEmptyResults: true, testResults: 'build/**/*Tests.xml,repo/sim/tests/endToEndTests/pyOpenPASS/result_*.xml'
}
}
}
......
[requires]
libiconv/1.17@
libxml2/2.12.5@
b2/4.10.1
boost/1.85.0
qt/5.15.7
zlib/1.2.13@
......
......@@ -94,6 +94,20 @@ class LibiconvConan(ConanFile):
"RC": "windres --target=pe-i386",
"WINDRES": "windres --target=pe-i386",
})
elif cross_building(self) and self.settings.arch == "x86_64":
tc.update_configure_args({
"--host": "x86_64-w64-mingw32",
"CC": "x86_64-w64-mingw32-gcc",
"CXX": "x86_64-w64-mingw32-g++",
"AR": "x86_64-w64-mingw32-ar",
"AS": "x86_64-w64-mingw32-as",
"LD": "x86_64-w64-mingw32-ld",
"NM": "x86_64-w64-mingw32-nm",
"RANLIB": "x86_64-w64-mingw32-ranlib",
"STRIP": "x86_64-w64-mingw32-strip",
"RC": "x86_64-w64-mingw32-windres --target=pe-x86-64",
"WINDRES": "x86_64-w64-mingw32-windres --target=pe-x86-64",
})
elif self.settings.arch == "x86_64":
tc.update_configure_args({
"--host": "x86_64-w64-mingw32",
......
......@@ -71,7 +71,7 @@ BuildPackage() {
# Extract channel
packageChannel=$(echo $each_requirement | awk -F'[@/]' '{print $4}')
if [[ "$packageName" == "libxml2" ]]; then
if [[ "$packageName" == "libxml2" || "$packageName" == "libiconv" ]]; then
"$PYTHON_COMMAND" -m conans.conan create "$REPO_ROOT"/utils/ci/conan/recipe/"$packageName"/all --name $packageName --version $packageVersion --build=missing $packageOptions -pr:b "$conanprofile" -pr:h="$conanprofilehost"
status=$?
if [[ "$status" -gt 0 ]]; then
......@@ -176,9 +176,9 @@ for each_requirement in "${listOfRequirements[@]}"; do
continue
fi
if [[ "$packageName" == "libiconv" ]]; then
continue
fi
# if [[ "$packageName" == "libiconv" ]]; then
# continue
# fi
# Extract options and queries for each package
ExtractOptionsAndQueries
......
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