Skip to content

Commit

Permalink
Running jobs 1 by 1 on just 1 core.
Browse files Browse the repository at this point in the history
  • Loading branch information
martun committed Dec 8, 2023
1 parent 2463dcc commit 90cc24b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

# Allows you to run this workflow manually from the Actions tab
#workflow_dispatch:
workflow_dispatch:

env:
SUITE_REPO: "NilFoundation/crypto3"
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
needs: [checkout]
strategy:
fail-fast: false
max-parallel: 4 # don't run more than 4 jobs in parallel, they run out of memory
max-parallel: 1 # don't run jobs in parallel, they run out of memory
matrix:
target: [
crypto3_zk_commitment_fold_polynomial_test,
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
- name: Build
working-directory: ./build
run: cmake --build . -t ${{ matrix.target }}
run: cmake --build . -t ${{ matrix.target }} -j1

- name: Run test
working-directory: ./build
Expand Down

0 comments on commit 90cc24b

Please sign in to comment.