Skip to content

Commit e06f678

Browse files
authored
Merge pull request #5459 from diffblue/vs-github-action-build
Build CBMC in Visual Studio 2019, in Github Actions.
2 parents 03e77f7 + a6ca1ab commit e06f678

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,21 @@ jobs:
106106
run: cd build; ninja
107107
- name: Run CTest
108108
run: cd build; ctest -V -L CORE .
109+
check-vs-2019-build-only:
110+
runs-on: windows-2019
111+
env:
112+
SCRIPT_DIR: .github/workflows/vs2019
113+
defaults:
114+
run:
115+
shell: cmd
116+
steps:
117+
- name: Checkout the repository
118+
uses: actions/checkout@v2
119+
with:
120+
submodules: recursive
121+
122+
- name: Install bison and flex
123+
run: "%SCRIPT_DIR%\\install-bison.bat"
124+
125+
- name: Build cbmc
126+
run: "%SCRIPT_DIR%\\build-cbmc.bat"

0 commit comments

Comments
 (0)