From 260283fc5cd17778eb04b708f3bd8965b8f09318 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 18 Apr 2021 20:45:12 +0200 Subject: [PATCH] Update MacS-M1-make.yml try local install to avoid sudo --- .github/workflows/MacS-M1-make.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/MacS-M1-make.yml b/.github/workflows/MacS-M1-make.yml index f2455bb2e7..aef763150d 100644 --- a/.github/workflows/MacS-M1-make.yml +++ b/.github/workflows/MacS-M1-make.yml @@ -28,12 +28,12 @@ jobs: with: submodules: recursive - name: configure - run: ./configure + run: mkdir -p $PWD/localbin_${{ matrix.arch }}; ./configure --prefix=$PWD/localbin_${{ matrix.arch }} - name: make run: make -j4 - name: make tests run: make -j4 -C tests - name: make minimal sample - run: make -j4 -C samples/minimal -f makefile.unx clean;make -j4 -C samples/minimal -f makefile.unx + run: make install;make -j4 -C samples/minimal -f makefile.unx clean;make -j4 -C samples/minimal -f makefile.unx - name: run tests run: pushd tests;./test;popd