[HW] Fix ModuleType::getInputType to return InOutType for InOut port … #5096
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: Windows build and test | |
# Run on main (after PRs land) to ensure that they aren't heinously breaking the | |
# Windows build. | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
# Build CIRCT and run its tests. | |
build-circt: | |
name: Build and Test | |
uses: ./.github/workflows/unifiedBuildTestAndInstall.yml | |
with: | |
runner: windows-2019 | |
cmake_build_type: release | |
llvm_enable_assertions: ON | |
build_shared_libs: OFF | |
llvm_force_enable_stats: ON | |
runTests: true | |
cmake_c_compiler: cl | |
cmake_cxx_compiler: cl |