quickjs/.github/workflows/ci.yml

281 lines
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
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: |
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:
- 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: |
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