From c87ff26956970441ffa5f9e1ddb0a00ba2604d7e Mon Sep 17 00:00:00 2001 From: Artur Pedroso Date: Wed, 13 Mar 2024 18:17:56 +0000 Subject: [PATCH] Try action change --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4653f29..48e70d9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,6 +48,9 @@ jobs: - name: Build and test run: mvn test -B + # skip build arm temporarily to speedup tests + env: + ARCH_BUILD: "single" - name: Run tests on Alpine docker run: | @@ -56,8 +59,11 @@ jobs: git config --global --add safe.directory /feedzai-openml-java && \ git config --global --add safe.directory /feedzai-openml-java/openml-lightgbm/lightgbm-builder/make-lightgbm && \ cd /feedzai-openml-java && \ - cp openml-lightgbm/lightgbm-builder/make-lightgbm/build/amd64/alpine/lib_lightgbm.so /lib/lib_lightgbm.so && \ + cp openml-lightgbm/lightgbm-builder/make-lightgbm/build/amd64/musl/lib_lightgbm.so /lib/lib_lightgbm.so && \ 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: Test on arm64