We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2bd790d + dea65ea commit 4f7f9a3Copy full SHA for 4f7f9a3
.github/workflows/pull-request-checks.yaml
@@ -4,6 +4,30 @@ on:
4
branches: [ develop ]
5
6
jobs:
7
+ check-macos-10_15-make-clang:
8
+ runs-on: macos-10.15
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ with:
12
+ submodules: true
13
+ - name: Fetch dependencies
14
+ run: brew install maven flex bison
15
+ - name: Build using Make
16
+ run: |
17
+ make -C src minisat2-download
18
+ make -C src
19
+ make -C jbmc/src
20
+ make -C unit
21
+ make -C jbmc/unit
22
+ - name: Run unit tests
23
+ run: cd unit; ./unit_tests
24
+ - name: Run JBMC unit tests
25
+ run: cd jbmc/unit; ./unit_tests
26
+ - name: Run regression tests
27
+ run: cd regression; make
28
+ - name: Run JBMC regression tests
29
+ run: cd jbmc/regression; make
30
+
31
check-macos-10_15-cmake-clang:
32
runs-on: macos-10.15
33
steps:
0 commit comments