Skip to content

Commit

Permalink
make -j$(nproc)
Browse files Browse the repository at this point in the history
  • Loading branch information
qurious-pixel authored Feb 29, 2024
1 parent d24d2d6 commit cee85ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rpcsx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,25 +67,25 @@ jobs:
run: |
git clone https://github.com/weidai11/cryptopp.git
cd cryptopp
make && sudo make install
make -j$(nproc) && sudo make install
- name: Setup Zlib-ng
run: |
git clone https://github.com/zlib-ng/zlib-ng.git
cd zlib-ng
./configure && make && sudo make install
./configure && make -j$(nproc) && sudo make install
- name: Build RPCSX
run: |
cmake -Bbuild -DCMAKE_BUILD_TYPE=Release -GNinja && \
cmake --build build -j4
cmake --build build --parallel
ls -al build/bin
- name: Build RPCSX UI
run: |
cd ui/
/usr/lib/qt6/bin/qmake
CXX=clang++-${{ env.clang_ver }} make -j4
CXX=clang++-${{ env.clang_ver }} make -j$(nproc)
- name: Package RPCSX AppImage
run: |
Expand Down

0 comments on commit cee85ed

Please sign in to comment.