From 4f9da35e4ba366f8d72132a94a1d3f945a0bd87c Mon Sep 17 00:00:00 2001 From: Attila Vamos Date: Wed, 29 May 2024 18:46:49 +0100 Subject: [PATCH] Array test Signed-off-by: Attila Vamos --- .github/workflows/test-ui-gh_runner.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test-ui-gh_runner.yml b/.github/workflows/test-ui-gh_runner.yml index b9227e3b0c5..f57754e0999 100644 --- a/.github/workflows/test-ui-gh_runner.yml +++ b/.github/workflows/test-ui-gh_runner.yml @@ -19,6 +19,12 @@ on: required: false default: 'bison flex build-essential binutils-dev curl lsb-release libcppunit-dev python3-dev default-jdk r-base-dev r-cran-rcpp r-cran-rinside r-cran-inline pkg-config libtool autotools-dev automake git cmake xmlstarlet' + +env: + ML_SUPPRESS_WARNING_FILES: ( "RegressionTestModified.ecl" "ClassificationTestModified.ecl" ) + ML_EXCLUDE_FILES: "--ef ClassicTestModified.ecl,SVCTest.ecl,ClassificationTestModified.ecl" + BUNDLES_TO_TEST: ["ML_Core","PBblas","GLM","GNN","DBSCAN","LearningTrees","TextVectors","KMeans","SupportVectorMachines","LinearRegression","LogisticRegression"] + jobs: main: @@ -117,6 +123,11 @@ jobs: ecl bundle list find /home/runner/ -iname 'ToField.ecl' -type f retCode=$? + echo "retCode: $retCode" + for i in ${{ fromJSON(env.BUNDLES_TO_TEST) }} + do + echo "bundle: $i" + done - name: Run Tests timeout-minutes: 10 # generous, current runtime is ~1min, this should be increased if new tests are added