From fd4249c776e8d963a871899da9338f69f8015d73 Mon Sep 17 00:00:00 2001 From: Artur Pedroso Date: Wed, 13 Mar 2024 20:12:19 +0000 Subject: [PATCH] Try action change --- .github/workflows/build.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bbfa499..6789518 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,12 +48,9 @@ jobs: - name: Build and test run: mvn test -B - # skip build arm temporarily to speedup tests - env: - ARCH_BUILD: "single" # The skipped tests is because h2o-xgboost isn't ready to use on arm64 - - name: Run tests on Alpine docker + - name: Test with musl run: | docker run --rm -t -v ~/.m2:/root/.m2 -v $(pwd):/feedzai-openml-java -e FDZ_OPENML_JAVA_LIBC="musl" alpine:3.18.4 \ /bin/sh -c 'apk add clang openjdk8 maven bash git && \ @@ -62,9 +59,6 @@ jobs: cd /feedzai-openml-java && \ cp openml-lightgbm/lightgbm-builder/make-lightgbm/build/amd64/musl/lib_lightgbm.so /lib/lib_lightgbm.so && \ mvn test -B -Dsurefire.failIfNoSpecifiedTests=false -Dtest=!ClassifyUnknownCategoryTest#test,!H2OModelProviderTrainTest#trainModelsForAllAlgorithms' - # skip build arm temporarily to speedup tests - env: - ARCH_BUILD: "single" # The skipped tests is because h2o-xgboost isn't ready to use on arm64 - name: Test on arm64