From cca8b7610d48b654235551fdd05b652c253876db Mon Sep 17 00:00:00 2001 From: Nora Abi Akar <nora.abiakar@gmail.com> Date: Tue, 15 Dec 2020 17:13:28 +0100 Subject: [PATCH] Fix Python build in GH Actions (#1285) Python tests were failing because pyarb was not built --- .github/workflows/basic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index fd5269ca..21fb33cf 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -75,7 +75,7 @@ jobs: mkdir build cd build cmake .. -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC -DARB_WITH_PYTHON=ON -DPYTHON_EXECUTABLE=`which python` -DARB_WITH_MPI=${{ matrix.mpi }} - make -j4 tests examples html + make -j4 tests examples html pyarb cd - - name: Run unit tests run: build/bin/unit -- GitLab