From d94755103f1e22047a3c80b6c024d00e47476a43 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Fri, 19 Nov 2021 09:20:24 +0000 Subject: integration-tests: Update runs --- integration-tests.sh | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/integration-tests.sh b/integration-tests.sh index e2a4031..90cc59c 100755 --- a/integration-tests.sh +++ b/integration-tests.sh @@ -1,11 +1,20 @@ -#!/bin/sh +#!/bin/bash -## $1 remote -## $2 branch +## $1 branch +## $2 remote (Default to 'upstream : libcamera.org/internal') -echo "Using Remote $1 and branch $2" -./set-libcamera-branch.sh $1 $2 +BRANCH=$1 +REMOTE=${2:-upstream} +source common.sh + +echo "Using Remote $REMOTE and branch $BRANCH" +./set-libcamera-branch.sh $REMOTE $BRANCH + +pass_fail $? "Merged branch $BRANCH" + +echo "Validate checkstyle on the branch" +./pre-merge-05-checkstyle.sh echo "Building the matrix..." ./10-build-matrix.sh @@ -18,3 +27,9 @@ echo "Running unit tests..." echo "Validating installation/packaging..." ./52-package.sh + +echo "Validate with Simple-cam" +./60-simple-cam.sh + +echo "Validate build of the Intel IPU3 IPA" +./61-ipu3-ipa.sh -- cgit v1.2.1