Skip to content

pml first implementation #58

pml first implementation

pml first implementation #58

Workflow file for this run

name: Build application
on: [push, pull_request]
jobs:
windows-msvc-build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Build FDTD
shell: bash
run: |
export CMAKE_BUILD_PARALLEL_LEVEL=4
mkdir build
cd sln
cmake \
-A x64 \
-B ${PWD}/build
cmake --build ${PWD}/build --config Release
- name: Run tests
shell: bash
run: |
${PWD}/sln/build/test_FDTD_method/Release/test_FDTD_method.exe --gtest_repeat=2 --gtest_break_on_failure