Configure and build CMake projects on GitHub Actions
Go to file
dependabot[bot] 3ee391fc72
Some checks failed
Test / Test Action With Custom Generator (push) Has been cancelled
Build / Build Package (push) Has been cancelled
Check / Check Package (push) Has been cancelled
Test / Test Package (push) Has been cancelled
Test / Test Action (macos-14) (push) Has been cancelled
Test / Test Action (ubuntu-24.04) (push) Has been cancelled
Test / Test Action (windows-2022) (push) Has been cancelled
Test / Test Action With Specified Directories (push) Has been cancelled
Test / Test Action Without Run Build (push) Has been cancelled
Test / Test Action With Additional Options (push) Has been cancelled
chore: bump rollup from 4.37.0 to 4.38.0 (#669)
Bumps [rollup](https://github.com/rollup/rollup) from 4.37.0 to 4.38.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.37.0...v4.38.0)

---
updated-dependencies:
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-01 22:53:39 +07:00
.github build: setup Node.js using pnpm (#654) 2025-03-21 21:37:23 +07:00
dist feat: add function for parsing arguments with quotes (#532) 2024-11-26 18:43:30 +08:00
src test: use Vitest for testing (#564) 2025-01-03 22:53:57 +07:00
.gitattributes build: migrate project to use pnpm (#639) 2025-03-15 23:31:08 +08:00
.gitignore build: setup Node.js using pnpm (#654) 2025-03-21 21:37:23 +07:00
.npmrc chore: bump Node to version 23.10.0 (#668) 2025-03-30 16:45:34 +07:00
.prettierignore build: migrate project to use pnpm (#639) 2025-03-15 23:31:08 +08:00
action.yml refactor: rename index.ts to action.ts (#408) 2024-08-08 17:00:08 +08:00
eslint.config.js test: utilize new flat ESLint configuration (#294) 2024-04-12 22:55:35 +08:00
LICENSE docs: bump copyright year to 2025 (#567) 2025-01-07 09:36:03 +07:00
package.json chore: bump rollup from 4.37.0 to 4.38.0 (#669) 2025-04-01 22:53:39 +07:00
pnpm-lock.yaml chore: bump rollup from 4.37.0 to 4.38.0 (#669) 2025-04-01 22:53:39 +07:00
README.md docs: bump copyright year to 2025 (#567) 2025-01-07 09:36:03 +07:00
rollup.config.js feat: add function for parsing arguments with quotes (#532) 2024-11-26 18:43:30 +08:00
tsconfig.json build: use @tsconfig/node23 in tsconfig.json file (#660) 2025-03-25 09:38:32 +07:00
vitest.config.ts test: use Vitest for testing (#564) 2025-01-03 22:53:57 +07:00

CMake Action

Configure and build CMake projects on GitHub Actions.

This action wraps the cmake command for configuring and building CMake projects. It provides a more streamlined syntax for specifying build options compared to calling the cmake command directly.

Available Inputs

Name Value Type Description
source-dir Path The source directory of the CMake project. Defaults to the current working directory.
build-dir Path The build directory of the CMake project. Defaults to the build directory inside the source directory.
generator String The build system generator for the CMake project. Equivalent to setting the -G option.
c-compiler String The preferred executable for compiling C language files. Equivalent to defining the CMAKE_C_COMPILER variable.
cxx-compiler String The preferred executable for compiling C++ language files. Equivalent to defining the CMAKE_CXX_COMPILER variable.
c-flags Multiple strings Additional flags to pass when compiling C language files. Equivalent to defining the CMAKE_C_FLAGS variable.
cxx-flags Multiple strings Additional flags to pass when compiling C++ language files. Equivalent to defining the CMAKE_CXX_FLAGS variable.
options Multiple strings Additional options to pass during the CMake configuration. Equivalent to setting the -D option.
args Multiple strings Additional arguments to pass during the CMake configuration.
run-build true or false If enabled, builds the project using CMake. Defaults to true.
build-args Multiple strings Additional arguments to pass during the CMake build.

Available Outputs

Name Value Type Description
build-dir Path The build directory of the CMake project.

Example Usages

This example demonstrates how to use this action to configure and build a CMake project in a GitHub Actions workflow:

name: Build
on:
  push:
jobs:
  build-project:
    name: Build Project
    runs-on: ubuntu-24.04
    steps:
      - name: Checkout Project
        uses: actions/checkout@v4.2.2

      - name: Build Project
        uses: threeal/cmake-action@v2.1.0

Specify the Source and Build Directories

By default, this action uses the current working directory as the source directory and the build directory inside the source directory as the build directory. To use different directories, set the source-dir and/or build-dir inputs:

- name: Build Project
  uses: threeal/cmake-action@v2.1.0
  with:
    source-dir: source
    build-dir: output

Specify Build System Generator and Compiler

The following example demonstrates how to use this action to configure and build the project using Ninja as the build system generator and Clang as the compiler:

- name: Setup Ninja
  uses: seanmiddleditch/gha-setup-ninja@v5

- name: Build Project
  uses: threeal/cmake-action@v2.1.0
  with:
    generator: Ninja
    cxx-compiler: clang++

Specify Additional Options

Use the options input to specify additional options for configuring a project:

- name: Build Project
  uses: threeal/cmake-action@v2.1.0
  with:
    options: |
      BUILD_TESTS=ON
      BUILD_EXAMPLES=ON      

The above example is equivalent to calling the cmake command with the -DBUILD_TESTS=ON and -DBUILD_EXAMPLES=ON arguments.

Configure Project Without Building

By default, this action builds the project after configuration. To skip the build process, set the run-build option to false:

- name: Configure Project
  uses: threeal/cmake-action@v2.1.0
  with:
    run-build: false

License

This project is licensed under the terms of the MIT License.

Copyright © 2023-2025 Alfi Maulana