Skip to content

Commit

Permalink
ANON-197 - Reduce parallelism to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
yumirkov committed Sep 25, 2024
1 parent fc52b3c commit 484d5f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ jobs:
steps:
- name: Set variables
run: |
echo "ANON_JOBS=1"
echo "ANON_JOBS=$((`nproc`+1))"
- name: Checkout Repository
uses: actions/checkout@v4
with:
Expand All @@ -350,7 +350,7 @@ jobs:
cd openssl-${OPENSSL_VERSION}
./Configure ${MINGW} shared --cross-compile-prefix=${CROSS_HOST}- --prefix="/build/openssl-${BUILD_TYPE}-prefix/"
make -j${{ env.ANON_JOBS }}
make -j1
make install
cd ..
Expand Down

0 comments on commit 484d5f1

Please sign in to comment.