Skip to content

try libstdc++-12, big upgrade #4

try libstdc++-12, big upgrade

try libstdc++-12, big upgrade #4

Workflow file for this run

name: tests
on: [push]
jobs:
test:
runs-on: ubuntu-22.04
permissions:
id-token: write
contents: read
strategy:
fail-fast: false
matrix:
build-type: ['release', 'debug']
node-version: ['16']
steps:
- uses: actions/checkout@v4
- name: Install packages
run: |
sudo apt update
sudo apt-get install -y libstdc++-12-dev
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install and setup
run: |
node -v
which node
clang++ -v
which clang++
make "${{ matrix.build-type }}"
- name: Run tests
run: |
npm test