Silence a legitimate sanitizer warning that's enabled by default in Android NDK 29 #209
Workflow file for this run
This file contains hidden or 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: Node.js CI with node-api-headers | |
| on: [push, pull_request] | |
| env: | |
| PYTHON_VERSION: '3.11' | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| api_version: | |
| - '9' | |
| node-version: | |
| - 22.x | |
| node-api-headers-version: | |
| - '1.1.0' | |
| - '1.2.0' | |
| - '1.3.0' | |
| os: | |
| - ubuntu-latest | |
| compiler: | |
| - gcc | |
| - clang | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Set up Python ${{ env.PYTHON_VERSION }} | |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Check Node.js installation | |
| run: | | |
| node --version | |
| npm --version | |
| - name: Install dependencies | |
| run: | | |
| npm install | |
| npm install "node-api-headers@${{ matrix.node-api-headers-version }}" | |
| - name: npm test | |
| run: | | |
| export NAPI_VERSION=${{ matrix.api_version }} | |
| if [ "${{ matrix.compiler }}" = "gcc" ]; then | |
| export CC="gcc" CXX="g++" | |
| fi | |
| if [ "${{ matrix.compiler }}" = "clang" ]; then | |
| export CC="clang" CXX="clang++" | |
| fi | |
| echo "CC=\"$CC\" CXX=\"$CXX\"" | |
| echo "$CC --version" | |
| $CC --version | |
| echo "$CXX --version" | |
| $CXX --version | |
| export CFLAGS="$CFLAGS -O3 --coverage" LDFLAGS="$LDFLAGS --coverage" | |
| export use_node_api_headers=true | |
| echo "CFLAGS=\"$CFLAGS\" LDFLAGS=\"$LDFLAGS\"" | |
| npm run pretest -- --verbose |