summaryrefslogtreecommitdiffstats
path: root/utils/run-flounder-ci-tests
blob: 986a0d06049427a82294d0d164c601d9509740ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash



SERVER="https://jsmoeller@lava.automotivelinux.org"
MACHINES="dra7xx-evm m3ulcb qemux86-64 raspberrypi3"
AGLVERSION="$1"

if test x"" = x"${AGLVERSION}" ; then
    echo "Need to specify version number to test"
    exit 1
fi

for MACHINE in $MACHINES ; do

./create-jobs.py --machine ${MACHINE} --url https://download.automotivelinux.org/AGL/upload/ci/flounder/${AGLVERSION}/${MACHINE}/deploy/images/${MACHINE}/ --callback-from lab-jsmoeller --test all --build-type release -n AGL-Flounder-${AGLVERSION}-${MACHINE} > /tmp/1.yaml
lava-tool submit-job https://jsmoeller@lava.automotivelinux.org /tmp/1.yaml

done
span> explicit Navigation(QObject * parent = Q_NULLPTR); virtual ~Navigation(); Q_INVOKABLE void broadcastPosition(double lat, double lon, double drc, double dst); Q_INVOKABLE void broadcastRouteInfo(double lat, double lon, double route_lat, double route_lon); Q_INVOKABLE void broadcastStatus(QString state); // only support one waypoint for now Q_INVOKABLE void sendWaypoint(double lat, double lon); signals: void statusEvent(QVariantMap data); void positionEvent(QVariantMap data); void waypointsEvent(QVariantMap data); private: // slots void onConnected(); void onDisconnected(); const QStringList events { "status", "position", "waypoints", }; }; #endif // NAVIGATION_H