From b32e587acb892ae394cdce003a5dd3d984722ff7 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Thu, 19 Aug 2021 11:32:59 -0400 Subject: [PATCH] Fix R binding CI build (hopefully). --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d53a06fa41..ff04dcd638 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,7 +52,7 @@ jobs: run: | sudo apt-get update sudo apt-get install -y --allow-unauthenticated libopenblas-dev liblapack-dev g++ libboost-all-dev libcereal-dev - curl https://data.kurg.org/armadillo-8.400.0.tar.xz | tar -xvJ && cd armadillo* + curl https://files.mlpack.org/armadillo-8.400.0.tar.gz | tar -xzv && cd armadillo* cmake . && make && sudo make install && cd .. - name: Install R-bindings dependencies @@ -68,7 +68,7 @@ jobs: - name: Build run: | - cd build && make -j2 && make -j2 mlpack_test + cd build && make && make mlpack_test - name: Run tests via ctest run: |