Install all the tools required for building and testing C++/C projects.
Setting up a cross-platform environment for building and testing C++/C projects is a bit tricky. Each platform has its own compilers, and each of them requires a different installation procedure. This package aims to fix this issue.
setup-cpp can be used locally from terminal, from CI services like GitHub Actions and GitLab Pipelines, and inside containers like Docker.
setup-cpp is supported on many platforms. It is continuously tested on several configurations including Windows (11, 10, 2022, 2019) x64/ARM/x86, Linux (Ubuntu 24.0, 22.04, 20.04, 18.04, Fedora, ArchLinux) x64/ARM, and macOS (14, 13, 12, 11, 10.15) x64/ARM. setup-cpp is backed by unit tests for each tool and integration tests for compiling cpp projects.
Features
setup-cpp is modular and you can choose to install any of these tools:
setup-cpp automatically handles the dependencies of the selected tool (e.g., python is required for conan).
Usage
From Terminal
With npm and Nodejs
Run setup-cpp with the available options.
# Windows example (open PowerShell as admin)
npx setup-cpp --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
# restart the shell to activate the environment
NOTE: In the compiler entry, you can specify the version after - like llvm-18. For the tools, you can pass a specific version instead of true that chooses the default version
NOTE: On Unix systems, when setup-cpp is used locally or in other CI services like GitLab, the environment variables are added to ~/.cpprc. You should run source ~/.cpprc to immediately activate the environment variables. This file is automatically sourced in the next shell restart from ~/.bashrc or ~/.profile if SOURCE_CPPRC is not set to 0. To deactivate .cpprc in the next shell restart, rename/remove ~/.cpprc.
NOTE: On Unix systems, if you are already a root user (e.g., in a GitLab runner or Docker), you will not need to use sudo.
NOTE: setup-cpp requires Nodejs 12 or higher. If Nodejs shipped with your distribution is older than 12, install the latest Node (e.g. for Ubuntu 20.04), or alternatively you can use the executables that are self-contained (see the next section).
With executable
Download the executable for your platform from here, and run it with the available options. You can also automate downloading using curl, or other similar tools.
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
# windows example (open PowerShell as admin)
./setup-cpp --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
# restart the shell to activate the environment
NOTE: On Unix systems, if you are already a root user (e.g., in a GitLab runner or Docker), you will not need to use sudo.
Inside GitHub Actions
Here is a complete cross-platform example that tests llvm, gcc, and msvc. It also uses cmake, ninja, vcpkg, and cppcheck.
.github/workflows/ci.yml:
name: ci
on:
pull_request:
push:
branches:
- main
- master
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-2022
- ubuntu-24.04
- macos-14 # arm64
- macos-13
compiler:
- llvm
- gcc
# you can specify the version after `-` like `llvm-18`.
include:
- os: "windows-2022"
compiler: "msvc"
steps:
- uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v3
with:
path: |
~/vcpkg
./build/vcpkg_installed
${{ env.HOME }}/.cache/vcpkg/archives
${{ env.XDG_CACHE_HOME }}/vcpkg/archives
${{ env.LOCALAPPDATA }}\vcpkg\archives
${{ env.APPDATA }}\vcpkg\archives
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}-${{ hashFiles('./vcpkg.json')}}
restore-keys: |
${{ runner.os }}-${{ env.BUILD_TYPE }}-
- name: Setup Cpp
uses: aminya/setup-cpp@v1
with:
compiler: ${{ matrix.compiler }}
vcvarsall: ${{ contains(matrix.os, 'windows') }}
cmake: true
ninja: true
vcpkg: true
cppcheck: true
clang-tidy: true # instead of `true`, which chooses the default version, you can pass a specific version.
# ...
Prebuilt Docker Images
To provide fast development environments, setup-cpp provides several prebuilt docker images that have the tools you need (e.g. llvm, cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache).
You can use these images as a base image for your project.
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.43.0 AS builder
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.43.0 AS builder
FROM aminya/setup-cpp-fedora-llvm:40-0.43.0 AS builder
FROM aminya/setup-cpp-arch-llvm:base-0.43.0 AS builder
The names are in the format aminya/setup-cpp-<platform>-<compiler>:<platform_version>-<setup_cpp_version>.
If you need to install the tools selectively, see the next section.
Inside Docker
Here is an example for using setup-cpp to make a builder image that has the Cpp tools you need.
#### Base Image
FROM ubuntu:22.04 as setup-cpp-ubuntu
RUN apt-get update -qq && \
# install nodejs
apt-get install -y --no-install-recommends nodejs npm && \
# install setup-cpp
npm install -g setup-cpp@v0.43.0 && \
# install the compiler and tools
setup-cpp \
--nala true \
--compiler llvm \
--cmake true \
--ninja true \
--task true \
--vcpkg true \
--python true \
--make true \
--cppcheck true \
--gcovr true \
--doxygen true \
--ccache true && \
# cleanup
nala autoremove -y && \
nala autopurge -y && \
apt-get clean && \
nala clean --lists && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /tmp/*
ENTRYPOINT ["/bin/bash"]
#### Building (example)
FROM setup-cpp-ubuntu AS builder
COPY ./dev/cpp_vcpkg_project /home/app
WORKDIR /home/app
RUN bash -c 'source ~/.cpprc \
&& task build'
#### Running environment
# use a fresh image as the runner
FROM ubuntu:22.04 as runner
# copy the built binaries and their runtime dependencies
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
WORKDIR /home/app/
ENTRYPOINT ["./my_exe"]
setup-cpp
Install all the tools required for building and testing C++/C projects.
Setting up a cross-platform environment for building and testing C++/C projects is a bit tricky. Each platform has its own compilers, and each of them requires a different installation procedure. This package aims to fix this issue.
setup-cpp
can be used locally from terminal, from CI services like GitHub Actions and GitLab Pipelines, and inside containers like Docker.setup-cpp
is supported on many platforms. It is continuously tested on several configurations including Windows (11, 10, 2022, 2019) x64/ARM/x86, Linux (Ubuntu 24.0, 22.04, 20.04, 18.04, Fedora, ArchLinux) x64/ARM, and macOS (14, 13, 12, 11, 10.15) x64/ARM.setup-cpp
is backed by unit tests for each tool and integration tests for compiling cpp projects.Features
setup-cpp
is modular and you can choose to install any of these tools:setup-cpp
automatically handles the dependencies of the selected tool (e.g.,python
is required forconan
).Usage
From Terminal
With npm and Nodejs
Run
setup-cpp
with the available options.NOTE: In the
compiler
entry, you can specify the version after-
likellvm-18
. For the tools, you can pass a specific version instead oftrue
that chooses the default versionNOTE: On Unix systems, when
setup-cpp
is used locally or in other CI services like GitLab, the environment variables are added to~/.cpprc
. You should runsource ~/.cpprc
to immediately activate the environment variables. This file is automatically sourced in the next shell restart from~/.bashrc
or~/.profile
ifSOURCE_CPPRC
is not set to0
. To deactivate.cpprc
in the next shell restart, rename/remove~/.cpprc
.NOTE: On Unix systems, if you are already a root user (e.g., in a GitLab runner or Docker), you will not need to use
sudo
.NOTE: setup-cpp requires Nodejs 12 or higher. If Nodejs shipped with your distribution is older than 12, install the latest Node (e.g. for Ubuntu 20.04), or alternatively you can use the executables that are self-contained (see the next section).
With executable
Download the executable for your platform from here, and run it with the available options. You can also automate downloading using
curl
, or other similar tools.An example that installs llvm, cmake, ninja, ccache, and vcpkg:
NOTE: On Unix systems, if you are already a root user (e.g., in a GitLab runner or Docker), you will not need to use
sudo
.Inside GitHub Actions
Here is a complete cross-platform example that tests llvm, gcc, and msvc. It also uses cmake, ninja, vcpkg, and cppcheck.
.github/workflows/ci.yml
:Prebuilt Docker Images
To provide fast development environments,
setup-cpp
provides several prebuilt docker images that have the tools you need (e.g.llvm, cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache
).You can use these images as a base image for your project.
The names are in the format
aminya/setup-cpp-<platform>-<compiler>:<platform_version>-<setup_cpp_version>
.If you need to install the tools selectively, see the next section.
Inside Docker
Here is an example for using setup-cpp to make a builder image that has the Cpp tools you need.
See this folder, for some dockerfile examples.
If you want to build the ones included, then run:
Where you should use the path to the dockerfile after
-f
.After build, run the following to start an interactive shell in your container
Inside Docker inside GitHub Actions
You can use the docker file discussed in the previous section inside GitHub Actions like the following:
Inside GitLab pipelines
The following gives an example for setting up a C++ environment inside GitLab pipelines.
.gitlab-ci.yaml
Articles
Setup-Cpp on Dev.to
Usage Examples
See all of the usage examples on GitHub here.