Skip to content

Commit

Permalink
Add preliminary Windows compile check
Browse files Browse the repository at this point in the history
- Only checking Flex/Bison targets at the moment
  • Loading branch information
corco committed Apr 20, 2021
1 parent 20ad8dc commit bc75815
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/windows-compile.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit bc75815

Please sign in to comment.