Add Dari character (\x0964) to bengali.cti #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run sanitizer checks | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- '**.h' | |
- '**.c' | |
pull_request: | |
branches: [ master ] | |
paths: | |
- '**.h' | |
- '**.c' | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build with ${{ matrix.sanitizer }} sanitizer for ${{ matrix.ucs }} | |
strategy: | |
matrix: | |
ucs: [ucs2, ucs4] | |
sanitizer: [address, leak, undefined] | |
include: | |
- sanitizer: "address" | |
options: "ASAN_OPTIONS=detect_leaks=0" | |
- sanitizer: "leak" | |
options: "LSAN_OPTIONS=fast_unwind_on_malloc=0" | |
- sanitizer: "undefined" | |
options: "UBSAN_OPTIONS=halt_on_error=1" | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cba0d00b1fc9a034e1e642ea0f1103c282990604 # v2.5.0 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- name: Install dependencies | |
run: sudo apt-get update -qq && sudo apt-get install -y libyaml-dev | |
- name: Autogen | |
run: ./autogen.sh | |
- name: Configure | |
run: CFLAGS="-fsanitize=${{ matrix.sanitizer }} -g" ./configure | |
if: matrix.ucs == 'ucs2' | |
- name: Configure with ucs4 | |
run: CFLAGS="-fsanitize=${{ matrix.sanitizer }} -g" ./configure --enable-ucs4 | |
if: matrix.ucs == 'ucs4' | |
- name: Make check | |
run: ${{ matrix.options }} make check | |
- name: Store the test suite log | |
if: ${{ always() }} # store the test suite log even if the tests failed | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | |
with: | |
name: test-suite-${{ matrix.ucs }}-${{ matrix.sanitizer }}.log | |
path: tests/test-suite.log |