Skip to content

chore(lexer): Use standard cctype functions #62

chore(lexer): Use standard cctype functions

chore(lexer): Use standard cctype functions #62

Workflow file for this run

name: Build
on:
push:
branches:
- master
- docs
paths:
- '**.yml'
- 'include/**'
- 'src/**'
- 'CMakeLists.txt'
- '**.cmake'
pull_request:
branches:
- master
paths:
- '**.yml'
- 'include/**'
- 'src/**'
- 'CMakeLists.txt'
- '**.cmake'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install latest CMake and Ninja
uses: lukka/[email protected]
- name: Install LLVM and Clang
uses: KyleMayes/[email protected]
with:
version: "14.0"
- name: vcpkg install
run: |
vcpkg install spdlog
vcpkg install cli11
vcpkg list
- name: Setup VCPKG_DEFAULT_TRIPLET (macOS)
if: matrix.os == 'macos-latest'
run: |
echo "VCPKG_DEFAULT_TRIPLET=x64-osx" >> $env:GITHUB_ENV
- name: Build Ninja
run: |
cmake -S . -B build/ninja/ -GNinja
- name: Build target
run: |
cmake -S . -B build/${{ runner.os }}/