2023-10-31 17:01:52 +00:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '**'
|
|
|
|
- '!LICENSE'
|
|
|
|
- '!TODO'
|
|
|
|
- '!doc/**'
|
|
|
|
- '!examples/**'
|
|
|
|
- '.github/workflows/ci.yml'
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
# TODO(bnoordhuis) run test262 tests
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y
|
|
|
|
- name: stats
|
|
|
|
run: |
|
|
|
|
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y qjs
|
|
|
|
./qjs -qd
|
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y test
|
2023-11-01 04:03:26 +00:00
|
|
|
linux-asan:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y CONFIG_ASAN=y test
|
|
|
|
linux-msan:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y CONFIG_MSAN=y CONFIG_CLANG=y test
|
2023-11-01 08:27:38 +00:00
|
|
|
linux-ubsan:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y CONFIG_UBSAN=y test
|
2023-10-31 17:07:27 +00:00
|
|
|
|
|
|
|
macos:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y
|
|
|
|
- name: stats
|
|
|
|
run: |
|
|
|
|
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y qjs
|
|
|
|
./qjs -qd
|
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y test
|