Skip to content

Make utf8_length_from_utf32 branchless. #139

Make utf8_length_from_utf32 branchless.

Make utf8_length_from_utf32 branchless. #139

Workflow file for this run

name: Ubuntu 22.04
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ubuntu-build:
if: >-
! contains(toJSON(github.event.commits.*.message), '[skip ci]') &&
! contains(toJSON(github.event.commits.*.message), '[skip github]')
runs-on: ubuntu-22.04
strategy:
matrix:
shared: [ON, OFF]
cxx: [g++-12, clang++-14]
steps:
- uses: actions/checkout@v3
- name: Prepare
run: cmake -DBUILD_SHARED_LIBS=${{matrix.shared}} -B build
env:
CXX: ${{matrix.cxx}}
- name: Build
run: cmake --build build
- name: Test
run: ctest --output-on-failure --test-dir build