Skip to content
Snippets Groups Projects
Commit 0b711e81 authored by Ian Bell's avatar Ian Bell
Browse files

Test build with clang-cl without python layer

parent e3091886
No related branches found
No related tags found
No related merge requests found
name: build and run with clang-cl
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
Matrix-build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- name: checkout
uses: actions/checkout@v2
- name: checkout submodules
run: git submodule update --init --recursive
- name: mkdir
run: mkdir build && cd build
- name: cmake config
run: cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DTEQP_SNIPPETS=ON -DTEQP_TEQPC=ON -T ClangCL
- name: build all Catch tests
run: cmake --build build --target catch_tests
- name: build teqpc shared library
run: cmake --build build --target teqpc
- name: run all the compiled Catch tests
run: cd build && ctest --verbose
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment