Skip to content

Commit

Permalink
split into 3 steps
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcb committed Jan 29, 2025
1 parent 295f1eb commit 2685496
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,17 @@ jobs:
- name: Download Source
run: |
git clone --depth 1 https://github.com/gmp-mirror/gmp-${GMP_VERSION}.git
- name: Configure & build
- name: autoreconf
run: |
cd gmp-${GMP_VERSION}
autoreconf -ivf
- name: Configure
run: |
cd gmp-${GMP_VERSION}
./configure --enable-shared --disable-static --enable-fat --disable-doc
- name: Build
run: |
cd gmp-${GMP_VERSION}
make
- name: Check .libs
run: |
Expand Down

0 comments on commit 2685496

Please sign in to comment.