Skip to content

Commit

Permalink
Use 4 threads in CI (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
volkm authored Jul 23, 2024
2 parents c6223c5 + d5fd11e commit 873503c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ on:
pull_request:

env:
# GitHub runners currently have two cores
NR_JOBS: "2"
# GitHub runners currently have 4 cores
NR_JOBS: "4"

jobs:
# Perform in-depth tests with different configurations
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ env:
BASE_IMG: "movesrwth/carl-storm:ci-release"
STORM_GIT_URL: "${{ github.server_url }}/${{ github.repository }}.git"
STORM_BRANCH: "master"
# github runners currently have two cores
NR_JOBS: "2"
# GitHub runners currently have 4 cores
NR_JOBS: "4"


jobs:
Expand All @@ -25,7 +25,7 @@ jobs:
if: github.repository_owner == 'moves-rwth'
steps:
- name: Init Docker
run: sudo docker run -d -it --name storm --privileged ${BASE_IMG}
run: sudo docker run -d -it --name storm ${BASE_IMG}

# We should not do partial updates :/
# but we need to install some dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:
default: 'x.y.z'

env:
# GitHub runners currently have two cores
NR_JOBS: "2"
# GitHub runners currently have 4 cores
NR_JOBS: "4"

jobs:
deploy:
Expand Down
2 changes: 1 addition & 1 deletion doc/offline_package.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ cd storm
mkdir -p build
cd build
cmake ..
make storm-main -j$THREADS
make storm-cli -j$THREADS
cd ../../

echo "Installation successfull."
Expand Down

0 comments on commit 873503c

Please sign in to comment.