Skip to content

Commit

Permalink
Build CMake with multiple jobs to save time (aws#1735)
Browse files Browse the repository at this point in the history
### Description of changes: 
While working on aws#1729 I noticed the
CMake builds took a while because it was all single threaded. The GitHub
runners [have 4
cores](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories)
so this should speed it up a bit.

### Testing:
Waiting to see what happens here. 

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license and the ISC license.
  • Loading branch information
andrewhop authored Aug 2, 2024
1 parent 0574778 commit b32e641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/docker_images/cmake_build_versions/cmake_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ echo "Building CMake Version: ${CMAKE_VERSION:-unknown}"
# At the moment this works fine for all versions, in the future build logic can be modified to
# look at it ${CMAKE_VERSION}.
./configure --prefix=/opt/cmake --system-curl --system-libarchive
make
make -j
make install

0 comments on commit b32e641

Please sign in to comment.