diff --git a/.github/workflows/windows-compile.yml b/.github/workflows/windows-compile.yml new file mode 100644 index 0000000000..305441e87b --- /dev/null +++ b/.github/workflows/windows-compile.yml @@ -0,0 +1,29 @@ +# Platform specific Windows test. See verible-ci for main continuous integration. +name: macos-compile + +on: + push: + branches: + - master + - main + pull_request: + branches: + - master + - main + +jobs: + WindowsBuild: + runs-on: windows-latest + steps: + - name: Install deps + run: | + choco install winflexbison + - name: Checkout code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Build flex/bison files + run: | + bazel build //common/analysis:command_file_lex + bazel build //verilog/parser:verilog_y + bazel build //verilog/parser:verilog_lex \ No newline at end of file