Skip to content

Commit

Permalink
Update make.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AWehrhahn authored Dec 8, 2020
1 parent 5425cf8 commit f9f5c95
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,11 @@ jobs:
- run: yum install -y gcc-gfortran f2c cmake autoconf automake libtool
- run: git clone https://github.com/AWehrhahn/SMElib .
- name: Replace Makefile
if: ${{ matrix.compiler }} == 'f2c'
if: matrix.compiler == 'f2c'
run: rm Makefile.am && mv Makefile_f2c.am Makefile.am
- name: Run F2C
if: matrix.compiler == 'f2c'
run: f2c -w -a -C++ -Nn1604 -Nq1200 -dsrc/eos/ src/eos/*.f & f2c -w -a -C++ -dsrc/sme/ src/sme/*.f
- run: ./bootstrap && ./configure --prefix=$PWD
- run: make install
- run: zip -r ${{ matrix.name }} lib share
Expand Down

0 comments on commit f9f5c95

Please sign in to comment.