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
|
2023-11-24 13:00:50 +00:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: alpine.sh {0}
|
2023-11-17 22:06:02 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: jirutka/setup-alpine@v1
|
|
|
|
with:
|
|
|
|
arch: x86
|
|
|
|
packages: "build-base make cmake"
|
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
make
|
|
|
|
- name: stats
|
|
|
|
run: |
|
|
|
|
make stats
|
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
make test
|
2023-11-29 05:42:23 +00:00
|
|
|
linux-gcc48:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: ubuntu:14.04
|
|
|
|
steps:
|
|
|
|
- name: install dependencies
|
|
|
|
run: |
|
|
|
|
apt update && apt -y install make gcc-4.8 wget time software-properties-common
|
|
|
|
# git in default ppa repository is too old to run submodule checkout
|
|
|
|
add-apt-repository -y ppa:git-core/ppa
|
|
|
|
apt update
|
|
|
|
apt install -y git
|
|
|
|
wget https://github.com/Kitware/CMake/releases/download/v3.28.0-rc5/cmake-3.28.0-rc5-linux-x86_64.sh
|
|
|
|
sh cmake-3.28.0-rc5-linux-x86_64.sh --skip-license --prefix=/usr
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
CC=gcc-4.8 make
|
|
|
|
- name: stats
|
|
|
|
run: |
|
|
|
|
make stats
|
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
make test
|
|
|
|
- name: test 262
|
|
|
|
run: |
|
|
|
|
time make test262
|
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
|
|
|
|
2023-11-22 08:36:53 +00:00
|
|
|
windows-clang:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
cmake -B build -G "Visual Studio 17 2022" -T ClangCL
|
|
|
|
cmake --build build --target qjs_exe
|
|
|
|
- name: stats
|
|
|
|
run: |
|
|
|
|
cmd /r build\Debug\qjs.exe -qd
|
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
cmd /r build\Debug\qjs.exe tests\test_bigint.js
|
|
|
|
cmd /r build\Debug\qjs.exe tests\test_closure.js
|
|
|
|
cmd /r build\Debug\qjs.exe tests\test_language.js
|
|
|
|
cmd /r build\Debug\qjs.exe tests\test_builtin.js
|
|
|
|
cmd /r build\Debug\qjs.exe tests\test_loop.js
|
|
|
|
cmd /r build\Debug\qjs.exe tests\test_std.js
|
|
|
|
cmd /r build\Debug\qjs.exe tests\test_worker.js
|
|
|
|
cmd /r build\Debug\qjs.exe tests\test_queue_microtask.js
|
|
|
|
|
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:
|
2023-11-24 12:58:20 +00:00
|
|
|
- mingw32
|
2023-11-02 08:33:13 +00:00
|
|
|
- mingw64
|
2023-11-27 09:00:42 +00:00
|
|
|
- clang64
|
2023-11-02 08:33:13 +00:00
|
|
|
- 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
|