mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 00:38:08 +08:00
ci: add toml-test workflow
This commit is contained in:
34
.github/workflows/toml-test.yml
vendored
Normal file
34
.github/workflows/toml-test.yml
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
name: build
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
toml-test:
|
||||
runs-on: Ubuntu-22.04
|
||||
strategy:
|
||||
matrix:
|
||||
compiler: ['g++-12']
|
||||
standard: ['11', '14', '17', '20']
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
- name: Install
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install -y ${{ matrix.compiler }} golang-go
|
||||
- name: Configure
|
||||
run: |
|
||||
cmake -B build/ -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TOML_TESTS=ON
|
||||
- name: Build
|
||||
run: |
|
||||
cmake --build build/
|
||||
- name: Test
|
||||
run: |
|
||||
go install github.com/toml-lang/toml-test/cmd/toml-test@latest
|
||||
toml-test ./build/tests/toml11_decoder
|
||||
# skipped tests does not conform the latest commit in toml-lang/toml
|
||||
toml-test -toml 1.1.0 ./tests/toml11_decoder_v1_1_0 -skip invalid/control/comment-del,invalid/control/comment-lf,invalid/control/comment-us
|
||||
toml-test ./build/tests/toml11_encoder
|
||||
|
Reference in New Issue
Block a user