Install all the tools required for building and testing C++/C projects.
Go to file Use this template
Amin Yahyaabadi 52b4862a75 fix: use info instead of warning [skip ci] 2021-12-07 13:11:52 -06:00
.github ci: add debugging session 2021-12-06 09:19:37 -06:00
.vscode v0.3.0 2021-11-21 14:20:51 -06:00
building v0.5.0 [skip ci] 2021-12-07 06:53:52 -06:00
dist fix: use info instead of warning [skip ci] 2021-12-07 13:11:52 -06:00
src fix: use info instead of warning [skip ci] 2021-12-07 13:11:52 -06:00
.eslintrc.json feat: add msvc installation 2021-09-15 05:25:02 -05:00
.gitattributes chore: add the template 2021-09-14 01:50:42 -05:00
.gitignore fix: rename the executable 2021-09-17 13:19:10 -05:00
.npmrc chore: enable post install cache for pnpm 2021-09-15 04:09:26 -05:00
.prettierignore feat: add msvc installation 2021-09-15 05:25:02 -05:00
.terserrc.js chore: add script for disabling debug messages in the release 2021-09-17 14:35:53 -05:00
LICENSE.dependencies.txt feat: add a separate vcvarsall 2021-12-05 08:51:12 -06:00
LICENSE.txt chore: add the template 2021-09-14 01:50:42 -05:00
README.md v0.5.0 [skip ci] 2021-12-07 06:53:52 -06:00
action.yml fix: add kcov to action inputs [skip ci] 2021-12-07 06:46:23 -06:00
jest.config.js test: use esm preset of jest 2021-12-01 04:06:39 -06:00
package.json fix: update msvc-dev-cmd 2021-12-07 03:13:14 -06:00
pnpm-lock.yaml fix: update msvc-dev-cmd 2021-12-07 03:13:14 -06:00
tsconfig.json feat: add a separate vcvarsall 2021-12-05 08:51:12 -06:00

README.md

setup-cpp

Install all the tools required for building and testing C++/C projects.

Build Status (Github Actions)

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.

This package is designed to be modular and as minimal as possible. This will allow you to install the tools you want. It is continuously tested on Windows, Linux, and macOS.

The package can be used locally or from CI services like GitHub Actions.

Features

setup-cpp can install all of these tools:

  • cmake
  • ninja
  • llvm
  • gcc
  • msvc
  • vcvarsall
  • vcpkg
  • meson
  • conan
  • ccache
  • cppcheck
  • doxygen
  • gcovr
  • opencppcoverage
  • kcov
  • python
  • choco
  • brew

Usage

From Terminal

You should download the executable file or the js file (if Nodejs installed), and run it with the available options.

Tip: You can automate downloading using wget, curl, or other similar tools.

Executable

Download the executable for your platform from here, and run it with the available options.

An example that installs llvm, cmake, ninja, ccache, and vcpkg:

# windows example (open shell as admin)
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.0/setup_cpp_windows.exe"
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
# linux example
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.0/setup_cpp_linux"
chmod +x setup_cpp_linux
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
# mac example
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.0/setup_cpp_mac"
chmod +x setup_cpp_mac
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true

NOTE: In the compiler entry, you can specify the version after - like llvm-11. For the tools, instead of true that chooses the default version, you can pass a specific version.

With Nodejs

Download the setup_cpp.js file form here, and run it with the available options.

On Windows:

Open the shell as admin, download via curl, then install

# open shell as admin
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.0/setup_cpp.js"
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true

On Linux or Mac:

wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.0/setup_cpp.js"
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true

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-2019
          - ubuntu-20.04
          - macos-10.15
        compiler:
          - llvm
          - gcc
          # you can specify the version after `-` like `llvm-13.0.0`.
        include:
          - os: "windows-latest"
            compiler: "msvc"
    steps:
      - name: Cache
        uses: actions/cache@v2
        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 }}
          cmake: true
          ninja: true
          vcpkg: true
          cppcheck: true # instead of `true`, which chooses the default version, you can pass a specific version.
          # add any tool that you need here...

Inside Docker

Here is an example for using setup_cpp to make a builder image that has the Cpp tools you need.

# debian
FROM debian:bullseye

# add setup_cpp
WORKDIR "/"
RUN apt-get update -qq
RUN apt-get install -y --no-install-recommends apt-utils
RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.0/setup_cpp_linux"
RUN chmod +x ./setup_cpp_linux

# install llvm, cmake, ninja, ccache, and vcpkg
RUN ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true

ENTRYPOINT [ "/bin/sh" ]

See this folder, for some dockerfile examples.

If you want to build the ones included, then run:

docker build -f ./building/docker/debian.dockerfile -t setup_cpp .

Where you should use the path to the docker after -f.

After build, run the following to start an interactive shell in your container

docker run -it setup_cpp

Inside Docker inside GitHub Actions

You can use the docker file discussed in the previous section inside GitHub Actions like the following:

jobs:
  Docker:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os:
          - ubuntu-20.04
    steps:
      - uses: actions/checkout@v2
      - name: Build
        id: docker_build
        run: |
          docker build -f ./building/docker/debian.dockerfile -t setup_cpp .          
        env:
          ACTIONS_ALLOW_UNSECURE_COMMANDS: true