From 5d9035053a26f7631b907fc6254296c56c69e129 Mon Sep 17 00:00:00 2001 From: Simon Garnotel Date: Fri, 8 Mar 2024 10:42:57 +0100 Subject: [PATCH] no autoreconf --- .github/workflows/release-dmg.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release-dmg.yml b/.github/workflows/release-dmg.yml index 96c455289..fe797137a 100644 --- a/.github/workflows/release-dmg.yml +++ b/.github/workflows/release-dmg.yml @@ -70,7 +70,7 @@ jobs: - name: Configure run: | PREFIX=${{ steps.version.outputs.prefix }} - autoreconf -i + tar zxvf AutoGeneratedFile.tar.gz ./configure --enable-optim --enable-generic --enable-download --enable-m64 \ --prefix="$PREFIX" \ "CXXFLAGS=-Wno-undefined-var-template" \ @@ -82,14 +82,15 @@ jobs: cd 3rdparty/ff-petsc make petsc-slepc SUDO=sudo cd - - ./reconfigure - name: Build - run: make -j2 + run: | + ./reconfigure + make -j2 - # - name: Check - # continue-on-error: true - # run: make check + - name: Check + continue-on-error: true + run: make check - name: Install run: |