quickjs/.github/workflows/ci.yml

313 lines
6.9 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-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