2020-05-13 02:26:17 +08:00
|
|
|
name: Ubuntu
|
2019-09-03 03:35:53 +08:00
|
|
|
|
2020-05-18 20:01:54 +08:00
|
|
|
on: [push, pull_request]
|
2019-09-03 03:35:53 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
2020-05-13 02:26:17 +08:00
|
|
|
|
2019-09-03 03:35:53 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: cmake
|
2020-05-27 19:22:14 +08:00
|
|
|
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
|
2019-09-03 04:15:11 +08:00
|
|
|
- name: build
|
2020-05-13 02:45:18 +08:00
|
|
|
run: cmake --build build --parallel 10
|
2019-09-03 04:15:11 +08:00
|
|
|
- name: test
|
2020-05-19 19:45:52 +08:00
|
|
|
run: cd build ; ctest -j 10 --output-on-failure
|