Support c++20 and clang compiler #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: reusable testing | |
on: | |
workflow_call: | |
inputs: | |
runs-on: | |
required: true | |
type: string | |
build-type: | |
required: true | |
type: string | |
cxx-standard: | |
required: false | |
type: number | |
compiler: | |
default: {c: gcc, cxx: g++} | |
type: map | |
use-valgrind: | |
default: false | |
type: boolean | |
enable-sanitizers: | |
default: false | |
type: boolean | |
jobs: | |
testing: | |
runs-on: ${{ inputs.runs-on }} | |
steps: | |
- name: Clone the connector | |
uses: actions/checkout@v3 | |
- name: Setup Tarantool | |
uses: ./.github/actions/setup-tarantool | |
with: | |
runs-on: ${{ inputs.runs-on }} | |
- name: Setup valgrind | |
if: inputs.use-valgrind | |
run: sudo apt update && sudo apt install -y valgrind | |
- name: Build tntcxx | |
env: | |
CC: ${{ inputs.compiler.c }} | |
CXX: ${{ inputs.compiler.cxx }} | |
uses: ./.github/actions/build-tntcxx | |
with: | |
build-type: ${{ inputs.build-type }} | |
enable-sanitizers: ${{ inputs.enable-sanitizers }} | |
cxx-standard: ${{ inputs.cxx-standard }} | |
- name: Test tntcxx | |
uses: ./.github/actions/test-tntcxx | |
with: | |
use-valgrind: ${{ inputs.use-valgrind }} |