Skip to content

Add ccache to speed up builds #8

Add ccache to speed up builds

Add ccache to speed up builds #8

Workflow file for this run

# Continuous Integration tests
name: Windows
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# C:/ProgramData/chocolatey/bin/gcc.exe
# C:/ProgramData/chocolatey/bin/g++.exe
# Ensure that only one instance of the workflow is run at a time for each branch/tag.
# Jobs currently running on the branch/tag will be cancelled when new commits are pushed.
# See https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#concurrency.
concurrency:
# `github.workflow` is the workflow name, `github.ref` is the current branch/tag identifier
group: ${{ format('{0}:{1}', github.workflow, github.ref) }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-windows:
name: ${{ matrix.toolchain.name }}
strategy:
matrix:
toolchain:
- name: MSVC
c: cl
cxx: cl
- name: GCC
c: gcc
cxx: g++
# The type of runner that the job will run on
runs-on: windows-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
# Download and setup ccache
- name: Setup CCache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}-clang-tidy
variant: sccache
# Download and install cmake
- name: Install CMake
uses: lukka/get-cmake@latest
with:
cmakeVersion: 3.27.1
ninjaVersion: 1.11.1
# This lets ninja find MSVC
- name: Add MSVC to path
uses: ilammy/msvc-dev-cmd@v1
- name: Configure CMake
shell: cmd
run: |
cmake -E make_directory build
cmake -S . -B build ^
-GNinja ^
-DCMAKE_C_COMPILER=${{ matrix.toolchain.c }} ^
-DCMAKE_CXX_COMPILER=${{ matrix.toolchain.cxx }} ^
-DCMAKE_C_COMPILER_LAUNCHER=sccache ^
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache ^
-DBUILD_TESTS=ON ^
-DCMAKE_BUILD_TYPE=Release ^
-DCI_BUILD=ON ^
-DENABLE_CLANG_TIDY=OFF
- name: Build
timeout-minutes: 30
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build build --config Release
- name: SCCache Stats
run: sccache --show-stats
- name: Test
timeout-minutes: 10
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: |
build/tests/Release/test_nuclear.exe
for f in build/tests/individual/Release/*; do echo "Testing $f"; ./$f; done
shell: bash