2023-10-31 17:01:52 +00:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '**'
|
2023-11-05 13:00:39 +00:00
|
|
|
- '!.gitignore'
|
2023-10-31 17:01:52 +00:00
|
|
|
- '!LICENSE'
|
|
|
|
- '!TODO'
|
|
|
|
- '!doc/**'
|
|
|
|
- '!examples/**'
|
|
|
|
- '.github/workflows/ci.yml'
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
|
|
runs-on: ubuntu-latest
|
2023-11-12 21:16:50 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
buildType: [Debug, Release]
|
2023-10-31 17:01:52 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-11-04 09:27:57 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-10-31 17:01:52 +00:00
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make BUILD_TYPE=${{matrix.buildType}}
|
2023-11-12 21:16:50 +00:00
|
|
|
- name: stats
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make stats
|
2023-10-31 17:01:52 +00:00
|
|
|
- name: test
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make test
|
2023-11-12 21:16:50 +00:00
|
|
|
- name: test 262
|
|
|
|
if: ${{ matrix.buildType == 'Release' }}
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
time make test262
|
2023-11-17 22:06:02 +00:00
|
|
|
linux-32bits:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: jirutka/setup-alpine@v1
|
|
|
|
with:
|
|
|
|
arch: x86
|
|
|
|
packages: "build-base make cmake"
|
|
|
|
- name: build
|
|
|
|
shell: alpine.sh {0}
|
|
|
|
run: |
|
|
|
|
make
|
|
|
|
- name: stats
|
|
|
|
shell: alpine.sh {0}
|
|
|
|
run: |
|
|
|
|
make stats
|
|
|
|
- name: test
|
|
|
|
shell: alpine.sh {0}
|
|
|
|
run: |
|
|
|
|
make test
|
2023-11-17 09:45:04 +00:00
|
|
|
linux-examples:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make BUILD_EXAMPLES=ON
|
2023-11-17 09:45:04 +00:00
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
ldd build/hello
|
|
|
|
ldd build/hello_module
|
|
|
|
ldd build/test_fib
|
|
|
|
./build/hello
|
|
|
|
./build/hello_module
|
|
|
|
./build/test_fib
|
|
|
|
cp build/fib.so examples/
|
|
|
|
cp build/point.so examples/
|
|
|
|
cp build/bjson.so tests/
|
|
|
|
./build/qjs examples/test_fib.js
|
|
|
|
./build/qjs examples/test_point.js
|
|
|
|
./build/qjs tests/test_bjson.js
|
2023-11-14 21:29:00 +00:00
|
|
|
linux-shared:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make BUILD_SHARED_LIBS=ON
|
2023-11-14 21:29:00 +00:00
|
|
|
ldd build/qjs
|
|
|
|
- name: stats
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make stats
|
2023-11-01 04:03:26 +00:00
|
|
|
linux-asan:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-11-13 12:08:56 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-11-12 21:16:50 +00:00
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make CONFIG_ASAN=ON
|
2023-11-01 04:03:26 +00:00
|
|
|
- name: test
|
2023-11-12 21:16:50 +00:00
|
|
|
env:
|
|
|
|
ASAN_OPTIONS: halt_on_error=1
|
2023-11-01 04:03:26 +00:00
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make test
|
2023-11-13 12:08:56 +00:00
|
|
|
- name: test 262
|
|
|
|
env:
|
|
|
|
ASAN_OPTIONS: halt_on_error=1
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
time make test262
|
2023-11-01 04:03:26 +00:00
|
|
|
linux-msan:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-11-13 12:08:56 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-11-12 21:16:50 +00:00
|
|
|
- name: build
|
|
|
|
env:
|
|
|
|
CC: clang
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make CONFIG_MSAN=ON
|
2023-11-01 04:03:26 +00:00
|
|
|
- name: test
|
2023-11-12 21:16:50 +00:00
|
|
|
env:
|
|
|
|
MSAN_OPTIONS: halt_on_error=1
|
2023-11-01 04:03:26 +00:00
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make test
|
2023-11-01 08:27:38 +00:00
|
|
|
linux-ubsan:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-11-13 12:08:56 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-11-12 21:16:50 +00:00
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make CONFIG_UBSAN=ON
|
2023-11-01 08:27:38 +00:00
|
|
|
- name: test
|
2023-11-12 21:16:50 +00:00
|
|
|
env:
|
|
|
|
UBSAN_OPTIONS: halt_on_error=1
|
2023-11-01 08:27:38 +00:00
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make test
|
2023-11-13 12:08:56 +00:00
|
|
|
- name: test 262
|
|
|
|
env:
|
|
|
|
UBSAN_OPTIONS: halt_on_error=1
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
time make test262
|
2023-11-12 21:16:50 +00:00
|
|
|
|
|
|
|
macos:
|
|
|
|
runs-on: macos-latest
|
2023-11-12 22:04:46 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
buildType: [Debug, Release]
|
2023-11-02 08:33:13 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make BUILD_TYPE=${{matrix.buildType}}
|
2023-11-02 08:33:13 +00:00
|
|
|
- name: stats
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make stats
|
2023-11-12 22:04:46 +00:00
|
|
|
- name: test
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make test
|
2023-11-17 09:45:04 +00:00
|
|
|
macos-examples:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make BUILD_EXAMPLES=ON
|
2023-11-17 09:45:04 +00:00
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
otool -L build/hello
|
|
|
|
otool -L build/hello_module
|
|
|
|
otool -L build/test_fib
|
|
|
|
./build/hello
|
|
|
|
./build/hello_module
|
|
|
|
./build/test_fib
|
|
|
|
cp build/fib.so examples/
|
|
|
|
cp build/point.so examples/
|
|
|
|
cp build/bjson.so tests/
|
|
|
|
./build/qjs examples/test_fib.js
|
|
|
|
./build/qjs examples/test_point.js
|
|
|
|
./build/qjs tests/test_bjson.js
|
2023-11-14 21:29:00 +00:00
|
|
|
macos-shared:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make BUILD_SHARED_LIBS=ON
|
2023-11-14 21:29:00 +00:00
|
|
|
otool -L build/qjs
|
|
|
|
- name: stats
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make stats
|
2023-11-12 21:16:50 +00:00
|
|
|
macos-asan:
|
2023-10-31 17:07:27 +00:00
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make CONFIG_ASAN=ON
|
2023-11-01 21:20:25 +00:00
|
|
|
- name: test
|
2023-11-12 21:16:50 +00:00
|
|
|
env:
|
|
|
|
ASAN_OPTIONS: halt_on_error=1
|
2023-11-01 21:20:25 +00:00
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make test
|
2023-11-01 21:20:25 +00:00
|
|
|
macos-ubsan:
|
|
|
|
runs-on: macos-latest
|
2023-11-02 08:33:13 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make CONFIG_UBSAN=ON
|
2023-11-12 22:04:46 +00:00
|
|
|
- name: test
|
2023-11-12 21:16:50 +00:00
|
|
|
env:
|
|
|
|
UBSAN_OPTIONS: halt_on_error=1
|
2023-11-12 22:04:46 +00:00
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make test
|
2023-11-06 22:15:19 +00:00
|
|
|
|
|
|
|
windows-mingw:
|
2023-11-02 08:33:13 +00:00
|
|
|
runs-on: windows-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-11-12 22:04:46 +00:00
|
|
|
buildType: [Debug, Release]
|
2023-11-02 08:33:13 +00:00
|
|
|
sys:
|
|
|
|
- mingw64
|
|
|
|
- ucrt64
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: msys2 {0}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup MSYS2
|
|
|
|
uses: msys2/setup-msys2@v2
|
|
|
|
with:
|
|
|
|
msystem: ${{matrix.sys}}
|
|
|
|
install: >-
|
|
|
|
git
|
|
|
|
make
|
|
|
|
pacboy: >-
|
|
|
|
cmake:p
|
|
|
|
ninja:p
|
|
|
|
toolchain:p
|
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make BUILD_TYPE=${{matrix.buildType}}
|
2023-11-02 08:33:13 +00:00
|
|
|
- name: stats
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make stats
|
2023-11-22 14:44:13 +00:00
|
|
|
ldd build/qjs
|
2023-11-12 22:04:46 +00:00
|
|
|
- name: test
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make test
|
2023-11-14 21:29:00 +00:00
|
|
|
windows-mingw-shared:
|
|
|
|
runs-on: windows-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: msys2 {0}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup MSYS2
|
|
|
|
uses: msys2/setup-msys2@v2
|
|
|
|
with:
|
|
|
|
install: >-
|
|
|
|
git
|
|
|
|
make
|
|
|
|
pacboy: >-
|
|
|
|
cmake:p
|
|
|
|
ninja:p
|
|
|
|
toolchain:p
|
|
|
|
- name: build
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make BUILD_SHARED_LIBS=ON
|
2023-11-14 21:29:00 +00:00
|
|
|
ldd build/qjs
|
|
|
|
- name: stats
|
|
|
|
run: |
|
2023-11-17 09:35:52 +00:00
|
|
|
make stats
|