fix: the bug of genlib_reader parser #1314
Workflow file for this run
This file contains hidden or 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: Windows CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ windows-2022 ] | |
| toolset: [ v142, ClangCL ] | |
| include: | |
| - os: windows-2022 | |
| env: "Visual Studio 17 2022" | |
| name: ${{matrix.os}} with ${{matrix.env}} and ${{matrix.toolset}} toolset | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - uses: actions/checkout@v1 | |
| with: | |
| submodules: true | |
| - name: Create build directory | |
| run: cmake -E make_directory ${{github.workspace}}\build | |
| - name: Run CMake | |
| run: cmake ${{github.workspace}} -G "${{matrix.env}}" -A x64 -T ${{matrix.toolset}} -DMOCKTURTLE_BUILD_TESTS=ON | |
| working-directory: ${{github.workspace}}\build | |
| - name: Build mockturtle | |
| run: cmake --build . -j2 | |
| working-directory: ${{github.workspace}}\build | |
| shell: cmd | |
| - name: Run tests | |
| run: | | |
| cd build | |
| .\test\Debug\run_tests |