fixed uints not present in integral_types #35
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
##====================================================================================================================== | |
## TTS - Tiny Test System | |
## Copyright : TTS Contributors & Maintainers | |
## SPDX-License-Identifier: BSL-1.0 | |
##====================================================================================================================== | |
name: TTS Integration Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: tts-integration-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
install: | |
runs-on: [ubuntu-latest] | |
container: | |
image: ghcr.io/jfalcou/compilers:v6 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Fetch current branch | |
uses: actions/checkout@v3 | |
- name: Install TTS from checkout | |
run: | | |
mkdir build && cd build | |
cmake -G Ninja .. -DTTS_BUILD_TEST=OFF | |
ninja install | |
- name: Run Sample CMake | |
run: | | |
mkdir install && cd install | |
cmake ../test/integration/install-test -G Ninja | |
ninja && ctest --verbose | |
fetch-content: | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
runs-on: [ubuntu-latest] | |
container: | |
image: ghcr.io/jfalcou/compilers:v6 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Fetch current branch | |
uses: actions/checkout@v3 | |
- name: Run Sample CMake | |
run: | | |
git config --global --add safe.directory /__w/tts/tts | |
mkdir install && cd install | |
cmake ../test/integration/fetch-test -G Ninja -DGIT_BRANCH=${BRANCH_NAME} -DTTS_BUILD_TEST=OFF | |
ninja && ctest --verbose | |
cpm: | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
runs-on: [ubuntu-latest] | |
container: | |
image: ghcr.io/jfalcou/compilers:v6 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Fetch current branch | |
uses: actions/checkout@v3 | |
- name: Run Sample CMake | |
run: | | |
git config --global --add safe.directory /__w/tts/tts | |
mkdir install && cd install | |
cmake ../test/integration/cpm-test -G Ninja -DGIT_BRANCH=${BRANCH_NAME} | |
ninja && ctest --verbose |