Version mismatch fix and some RE merge #442
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: Main CI | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/main_ci.yml' | |
- 'cmake/**' | |
- 'include/**' | |
- 'src/**' | |
- 'tests/**' | |
- 'CMakeLists.txt' | |
- 'CMakePresets.json' | |
- 'conanfile.py' | |
- 'vcpkg.json' | |
pull_request: | |
branches: [ main, feature/* ] | |
workflow_dispatch: | |
env: | |
VCPKG_COMMIT_ID: fc3f61366102c1f0d4547c06d03c523bb18c13a7 | |
jobs: | |
build-and-test-vcpkg: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
build-type: | |
- debug | |
- release | |
runtime: | |
- all | |
- flatrim | |
- ae | |
- se | |
- vr | |
compiler: | |
- msvc | |
- clang-cl | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
path: main | |
- name: Setup MSVC Environment | |
uses: ilammy/msvc-dev-cmd@v1.10.0 | |
- name: Setup vcpkg | |
uses: lukka/run-vcpkg@v10.0 | |
with: | |
vcpkgGitCommitId: ${{ env.VCPKG_COMMIT_ID }} | |
doNotCache: true | |
- name: Build | |
uses: lukka/run-cmake@v10.0 | |
with: | |
cmakeListsTxtPath: ${{ github.workspace }}/main/CMakeLists.txt | |
configurePreset: build-${{ matrix.build-type }}-${{ matrix.compiler }}-vcpkg-${{ matrix.runtime }} | |
buildPreset: ${{ matrix.build-type }}-${{ matrix.compiler }}-vcpkg-${{ matrix.runtime }} | |
- name: Unit tests | |
timeout-minutes: 5 | |
working-directory: ${{ github.workspace }}/main/build/${{ matrix.build-type }}-${{ matrix.compiler }}-vcpkg-${{ matrix.runtime }} | |
run: .\CommonLibSSETests.exe | |
build-and-test-conan: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
build-type: | |
- debug | |
- release | |
runtime: | |
- all | |
- flatrim | |
- ae | |
- se | |
- vr | |
compiler: | |
- msvc | |
- clang-cl | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
path: main | |
- name: Setup MSVC Environment | |
uses: ilammy/msvc-dev-cmd@v1.10.0 | |
- name: Install Conan | |
uses: turtlebrowser/get-conan@main | |
- name: Run Conan | |
working-directory: ${{ github.workspace }}/main | |
run: conan install --build=missing -o commonlibsse-ng:testing=True . | |
- name: Build with CMake | |
uses: lukka/run-cmake@v10.0 | |
with: | |
cmakeListsTxtPath: ${{ github.workspace }}/main/CMakeLists.txt | |
configurePreset: build-${{ matrix.build-type }}-${{ matrix.compiler }}-conan-${{ matrix.runtime }} | |
buildPreset: ${{ matrix.build-type }}-${{ matrix.compiler }}-conan-${{ matrix.runtime }} | |
- name: Build with Conan | |
if: matrix.compiler == 'msvc' && matrix.runtime == 'all' | |
working-directory: ${{ github.workspace }}/main | |
run: conan build . | |
- name: Unit tests | |
timeout-minutes: 5 | |
working-directory: ${{ github.workspace }}/main/build/${{ matrix.build-type }}-${{ matrix.compiler }}-conan-${{ matrix.runtime }} | |
run: .\CommonLibSSETests.exe | |
- name: Create Conan Package | |
if: matrix.compiler == 'msvc' && matrix.runtime == 'all' | |
working-directory: ${{ github.workspace }}/main | |
run: conan create . |