Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
🔥 Delete unnecessary make install
Browse files Browse the repository at this point in the history
Make install was failing and not completing. It is already installed on the system due to cmake. Removed the call for cleaner build logs.
  • Loading branch information
keithrfung committed Nov 11, 2019
1 parent 9e7adc8 commit 16e7a56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Install gcc and gmp
run: |
pacman --noconfirm -Syu
pacman --noconfirm -S mingw-w64-x86_64-gcc mingw-w64-x86_64-gmp make
pacman --noconfirm -S mingw-w64-x86_64-gcc mingw-w64-x86_64-gmp
- name: Build C Library
run: |
cmake --version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Install gcc and gmp
run: |
pacman --noconfirm -Syu
pacman --noconfirm -S mingw-w64-x86_64-gcc mingw-w64-x86_64-gmp make
pacman --noconfirm -S mingw-w64-x86_64-gcc mingw-w64-x86_64-gmp
- name: Build C Library
run: |
cmake --version
Expand Down

0 comments on commit 16e7a56

Please sign in to comment.