quickjs/.github/workflows/ci.yml

421 lines
9.6 KiB
YAML
Raw Normal View History

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
with:
submodules: true
2023-10-31 17:01:52 +00:00
- name: build
run: |
make BUILD_TYPE=${{matrix.buildType}}
2023-11-12 21:16:50 +00:00
- name: stats
run: |
make stats
2023-10-31 17:01:52 +00:00
- name: test
run: |
make test
2023-11-12 21:16:50 +00:00
- name: test 262
if: ${{ matrix.buildType == 'Release' }}
run: |
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
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: |
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
linux-shared:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build
run: |
make BUILD_SHARED_LIBS=ON
ldd build/qjs
- name: stats
run: |
make stats
2023-11-01 04:03:26 +00:00
linux-asan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
2023-11-12 21:16:50 +00:00
- name: build
run: |
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: |
make test
- name: test 262
env:
ASAN_OPTIONS: halt_on_error=1
run: |
time make test262
2023-11-01 04:03:26 +00:00
linux-msan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
2023-11-12 21:16:50 +00:00
- name: build
env:
CC: clang
run: |
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: |
make test
2023-11-01 08:27:38 +00:00
linux-ubsan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
2023-11-12 21:16:50 +00:00
- name: build
run: |
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: |
make test
- name: test 262
env:
UBSAN_OPTIONS: halt_on_error=1
run: |
time make test262
2023-11-12 21:16:50 +00:00
macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
buildType: [Debug, Release]
2023-11-02 08:33:13 +00:00
steps:
- uses: actions/checkout@v3
- name: build
run: |
make BUILD_TYPE=${{matrix.buildType}}
2023-11-02 08:33:13 +00:00
- name: stats
run: |
make stats
- name: test
run: |
make test
2023-11-17 09:45:04 +00:00
macos-examples:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: build
run: |
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
macos-shared:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: build
run: |
make BUILD_SHARED_LIBS=ON
otool -L build/qjs
- name: stats
run: |
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: |
make CONFIG_ASAN=ON
- name: test
2023-11-12 21:16:50 +00:00
env:
ASAN_OPTIONS: halt_on_error=1
run: |
make test
macos-ubsan:
runs-on: macos-latest
2023-11-02 08:33:13 +00:00
steps:
- uses: actions/checkout@v3
- name: build
run: |
make CONFIG_UBSAN=ON
- name: test
2023-11-12 21:16:50 +00:00
env:
UBSAN_OPTIONS: halt_on_error=1
run: |
make test
2023-11-06 22:15:19 +00:00
windows-clang:
runs-on: windows-latest
2023-11-30 08:13:35 +00:00
strategy:
fail-fast: false
matrix:
buildType: [Debug, Release]
steps:
- uses: actions/checkout@v3
- name: build
run: |
2023-11-30 08:13:35 +00:00
cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.buildType}} -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:
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
- 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: |
make BUILD_TYPE=${{matrix.buildType}}
2023-11-02 08:33:13 +00:00
- name: stats
run: |
make stats
ldd build/qjs
- name: test
run: |
make test
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: |
make BUILD_SHARED_LIBS=ON
ldd build/qjs
- name: stats
run: |
make stats
emscripten:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: mymindstorm/setup-emsdk@v13
- name: check emsdk
run: emcc -v
- name: build
run: |
emcmake cmake -B build
emmake make -C build qjs_wasm -j$(getconf _NPROCESSORS_ONLN)
- name: result
run: ls -lh build
2023-12-03 17:15:07 +00:00
cygwin:
runs-on: windows-latest
defaults:
run:
shell: C:\cygwin\bin\bash.exe --login --norc -eo pipefail -o igncr '{0}'
2023-12-07 08:26:11 +00:00
env:
CYGWIN_NOWINPATH: 1
CHERE_INVOKING: 1
2023-12-03 17:15:07 +00:00
steps:
- name: Set up Cygwin
uses: cygwin/cygwin-install-action@master
with:
packages: make cmake gcc-g++ bash
- uses: actions/checkout@v3
- name: build
2023-12-07 08:26:11 +00:00
run: make
2023-12-03 17:15:07 +00:00
- name: stats
2023-12-07 08:26:11 +00:00
run: make stats
2023-12-03 17:15:07 +00:00
- name: test
2023-12-07 08:26:11 +00:00
run: make test
2023-12-04 22:18:41 +00:00
openbsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build + test
uses: vmactions/openbsd-vm@v1
with:
usesh: true
prepare: |
2023-12-07 08:13:21 +00:00
pkg_add cmake gmake
2023-12-04 22:18:41 +00:00
run: |
2023-12-07 08:13:21 +00:00
gmake
gmake stats
2023-12-05 08:14:12 +00:00
freebsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build + test
uses: vmactions/freebsd-vm@v1
with:
usesh: true
prepare: |
2023-12-07 08:13:21 +00:00
pkg install -y cmake gmake
2023-12-05 08:14:12 +00:00
run: |
2023-12-07 08:13:21 +00:00
gmake
gmake stats
2023-12-07 14:48:31 +00:00
netbsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build + test
uses: vmactions/netbsd-vm@v1
with:
usesh: true
prepare: |
/usr/sbin/pkg_add cmake gmake
run: |
gmake
gmake stats
gmake test