quickjs/.github/workflows/ci.yml

630 lines
16 KiB
YAML
Raw Permalink 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:
codegen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: |
make codegen
- name: Check if the git repository is clean
run: $(exit $(git status --porcelain --untracked-files=no | head -255 | wc -l)) || (echo "Dirty git tree"; git diff; exit 1)
2023-10-31 17:01:52 +00:00
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@v4
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
- name: test v8 mjsunit
if: ${{ matrix.buildType == 'Release' }}
run: |
./v8.sh
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@v4
2023-11-17 22:06:02 +00:00
- 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
2024-06-07 06:29:50 +00:00
linux-riscv64:
runs-on: ubuntu-latest
defaults:
run:
shell: alpine.sh {0}
steps:
- uses: actions/checkout@v3
- uses: jirutka/setup-alpine@v1
with:
arch: riscv64
packages: "build-base make cmake"
- name: build
run: |
make
- name: stats
run: |
make stats
- name: test
run: |
make test
2024-03-05 08:45:47 +00:00
linux-s390x:
runs-on: ubuntu-latest
2024-03-05 08:45:47 +00:00
defaults:
run:
shell: alpine.sh {0}
steps:
- uses: actions/checkout@v3
- uses: jirutka/setup-alpine@v1
with:
arch: s390x
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:
2024-04-22 07:24:06 +00:00
image: ubuntu:18.04
steps:
- name: install dependencies
run: |
2024-04-22 07:24:06 +00:00
apt update && apt -y install make gcc-4.8 cmake software-properties-common
# git in default ppa repository is too old to run submodule checkout
add-apt-repository -y ppa:git-core/ppa
2024-04-22 07:24:06 +00:00
apt update && apt install -y git
- name: checkout
uses: actions/checkout@v3
with:
submodules: true
- name: build
2024-04-22 07:24:06 +00:00
env:
CC: gcc-4.8
run: |
mkdir build
cd build
cmake ..
cd ..
make -C build -j$(getconf _NPROCESSORS_ONLN)
- name: stats
run: |
2024-04-22 07:24:06 +00:00
./build/qjs -qd
2023-11-17 09:45:04 +00:00
linux-examples:
runs-on: ubuntu-latest
2023-11-17 09:45:04 +00:00
steps:
- uses: actions/checkout@v4
2023-11-17 09:45:04 +00:00
- 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
./build/function_source
linux-shared:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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
2023-11-01 04:03:26 +00:00
steps:
- uses: actions/checkout@v4
with:
submodules: true
# ASLR with big PIE slides does not work well with [AM]San
- name: disable ASLR
run: |
sudo sysctl -w kernel.randomize_va_space=0
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
2023-11-01 04:03:26 +00:00
steps:
- uses: actions/checkout@v4
with:
submodules: true
# ASLR with big PIE slides does not work well with [AM]San
- name: disable ASLR
run: |
sudo sysctl -w kernel.randomize_va_space=0
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
2023-11-01 08:27:38 +00:00
steps:
- uses: actions/checkout@v4
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
2024-03-12 08:56:49 +00:00
linux-tcc:
runs-on: ubuntu-latest
2024-03-12 08:56:49 +00:00
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: install TCC
run: |
pushd /tmp
git clone https://repo.or.cz/tinycc.git
2024-03-12 08:56:49 +00:00
cd tinycc
git checkout 9d2068c6309dc50dfdbbc30a5d6757683d3f884c
./configure
make
sudo make install
tcc -v
popd
- name: build
env:
CC: tcc
run: |
make
- name: stats
run: |
make stats
2023-11-12 21:16:50 +00:00
macos:
2024-04-04 13:51:47 +00:00
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
buildType: [Debug, Release]
2024-04-04 13:51:47 +00:00
os: [macos-12, macos-14]
2023-11-02 08:33:13 +00:00
steps:
- uses: actions/checkout@v4
2023-11-02 08:33:13 +00:00
- 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:
2024-04-04 13:51:47 +00:00
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14]
2023-11-17 09:45:04 +00:00
steps:
- uses: actions/checkout@v4
2023-11-17 09:45:04 +00:00
- 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
./build/function_source
macos-shared:
2024-04-04 13:51:47 +00:00
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14]
steps:
- uses: actions/checkout@v4
- 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:
2024-04-04 13:51:47 +00:00
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14]
2023-10-31 17:07:27 +00:00
steps:
- uses: actions/checkout@v4
2023-10-31 17:07:27 +00:00
- 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:
2024-04-04 13:51:47 +00:00
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14]
2023-11-02 08:33:13 +00:00
steps:
- uses: actions/checkout@v4
2023-11-02 08:33:13 +00:00
- 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-msvc:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
2024-06-17 07:17:21 +00:00
arch: [x64, Win32]
buildType: [Debug, Release]
steps:
- uses: actions/checkout@v4
- name: build
run: |
2024-06-17 07:17:21 +00:00
cmake -B build -G "Visual Studio 17 2022" -A ${{matrix.arch}}
cmake --build build --config ${{matrix.buildType}} --target qjs_exe
cmake --build build --config ${{matrix.buildType}} --target function_source
- name: stats
run: |
build\${{matrix.buildType}}\qjs.exe -qd
- name: test
run: |
build\${{matrix.buildType}}\qjs.exe tests\test_bigint.js
build\${{matrix.buildType}}\qjs.exe tests\test_closure.js
build\${{matrix.buildType}}\qjs.exe tests\test_language.js
build\${{matrix.buildType}}\qjs.exe tests\test_builtin.js
build\${{matrix.buildType}}\qjs.exe tests\test_loop.js
build\${{matrix.buildType}}\qjs.exe tests\test_std.js
build\${{matrix.buildType}}\qjs.exe tests\test_worker.js
build\${{matrix.buildType}}\qjs.exe tests\test_queue_microtask.js
build\${{matrix.buildType}}\function_source.exe
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@v4
- name: build
run: |
cmake -B build -G "Visual Studio 17 2022" -T ClangCL
cmake --build build --config ${{matrix.buildType}} --target qjs_exe
cmake --build build --config ${{matrix.buildType}} --target function_source
- name: stats
run: |
2024-04-06 20:28:52 +00:00
build\${{matrix.buildType}}\qjs.exe -qd
- name: test
run: |
2024-04-06 20:28:52 +00:00
build\${{matrix.buildType}}\qjs.exe tests\test_bigint.js
build\${{matrix.buildType}}\qjs.exe tests\test_closure.js
build\${{matrix.buildType}}\qjs.exe tests\test_language.js
build\${{matrix.buildType}}\qjs.exe tests\test_builtin.js
build\${{matrix.buildType}}\qjs.exe tests\test_loop.js
build\${{matrix.buildType}}\qjs.exe tests\test_std.js
build\${{matrix.buildType}}\qjs.exe tests\test_worker.js
build\${{matrix.buildType}}\qjs.exe tests\test_queue_microtask.js
build\${{matrix.buildType}}\function_source.exe
2024-04-06 20:42:01 +00:00
windows-ninja:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
buildType: [Debug, Release]
steps:
- uses: actions/checkout@v4
- name: install ninja
run: |
choco install ninja
ninja.exe --version
- name: build
run: |
cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.buildType}} -G "Ninja"
cmake --build build --target qjs_exe
cmake --build build --target function_source
- name: stats
run: |
build\qjs.exe -qd
- name: test
run: |
build\qjs.exe tests\test_bigint.js
build\qjs.exe tests\test_closure.js
build\qjs.exe tests\test_language.js
build\qjs.exe tests\test_builtin.js
build\qjs.exe tests\test_loop.js
build\qjs.exe tests\test_std.js
build\qjs.exe tests\test_worker.js
build\qjs.exe tests\test_queue_microtask.js
build\function_source.exe
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@v4
2023-11-02 08:33:13 +00:00
- 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@v4
- 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@v4
- 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
2024-02-13 11:43:56 +00:00
wasi:
runs-on: ubuntu-latest
2024-02-13 11:43:56 +00:00
steps:
- uses: actions/checkout@v4
2024-02-13 11:43:56 +00:00
- uses: jcbhmr/setup-wasmtime@v2
- name: setup wasi-sdk
run: |
wget -nv https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-21/wasi-sdk_21.0_amd64.deb -P /tmp
2024-02-13 11:43:56 +00:00
sudo apt install /tmp/wasi-sdk*.deb
- name: test
run: |
cmake -B build -DCMAKE_TOOLCHAIN_FILE=/opt/wasi-sdk/share/cmake/wasi-sdk.cmake
make -C build qjs_exe
wasmtime run build/qjs -qd
echo "console.log('hello wasi!');" > t.js
wasmtime run --dir . build/qjs t.js
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@v4
2023-12-03 17:15:07 +00:00
- 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@v4
2023-12-04 22:18:41 +00:00
- 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@v4
2023-12-05 08:14:12 +00:00
- 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@v4
2023-12-07 14:48:31 +00:00
- name: build + test
uses: vmactions/netbsd-vm@v1
with:
usesh: true
prepare: |
/usr/sbin/pkg_add cmake gmake
run: |
gmake
gmake stats
gmake test
2024-03-12 07:09:59 +00:00
android:
runs-on: ubuntu-latest
2024-03-12 07:09:59 +00:00
container: reactnativecommunity/react-native-android:v13.0
steps:
- uses: actions/checkout@v4
- name: Configure android arm64
# see build options you can use in https://developer.android.com/ndk/guides/cmake
run: |
mkdir build
cd build
$ANDROID_HOME/cmake/3.22.1/bin/cmake -DCMAKE_TOOLCHAIN_FILE=$ANDROID_HOME/ndk/26.0.10792818/build/cmake/android.toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DANDROID_ABI="arm64-v8a" -DANDROID_PLATFORM=android-24 -DBUILD_QJS_LIBC=ON ..
2024-03-12 07:09:59 +00:00
- name: Build android arm64
run: |
$ANDROID_HOME/cmake/3.22.1/bin/cmake --build build --target qjs
ls -lh build
2024-04-12 10:24:18 +00:00
ios:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: configure
run: |
cmake -B build -GXcode -DCMAKE_SYSTEM_NAME:STRING=iOS -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED:BOOL=NO -DBUILD_QJS_LIBC=ON
- name: build
run: |
cmake --build build --config Release --target qjs
ls -lh build