Skip to content

Commit

Permalink
no autoreconf
Browse files Browse the repository at this point in the history
  • Loading branch information
sgarnotel committed Mar 8, 2024
1 parent 21dc64f commit 5d90350
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release-dmg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand All @@ -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: |
Expand Down

0 comments on commit 5d90350

Please sign in to comment.