mirror of
https://github.com/DoneJS-Runtime/quickjs-done-nextgen.git
synced 2025-01-09 17:43:15 +00:00
31 lines
667 B
YAML
31 lines
667 B
YAML
name: tsan
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '**'
|
|
- '!.gitignore'
|
|
- '!LICENSE'
|
|
- '!README.md'
|
|
- '!docs/**'
|
|
- '!examples/**'
|
|
- '.github/workflows/tsan.yml'
|
|
- '.github/workflows/valgrind.yml'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: build
|
|
run: |
|
|
cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCONFIG_TSAN=ON
|
|
cmake --build build -j`nproc`
|
|
- name: test
|
|
run: |
|
|
./build/run-test262 -m -c test262.conf -c test262-fast.conf -a
|