We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1bacbd1 + b060d46 commit 9401ba2Copy full SHA for 9401ba2
.github/workflows/ccpp.yml
@@ -167,6 +167,25 @@ jobs:
167
ninja unittest
168
shell: bash
169
170
+ Shim:
171
+ runs-on: ubuntu-20.04
172
+ steps:
173
+ - uses: actions/checkout@v2
174
+ with:
175
+ path: microv
176
+ - name: Setup
177
+ run: |
178
+ sudo apt-get update
179
+ sudo apt-get install -y clang lld cmake ninja-build
180
+ shell: bash
181
+ - name: Validate Shim Driver Build
182
183
+ mkdir build && cd build
184
+ cmake -GNinja -DCMAKE_CXX_COMPILER="clang++" -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_EXAMPLES=ON ../microv
185
+ ninja shim_clean
186
+ ninja shim_build
187
188
+
189
Codecov:
190
runs-on: ubuntu-20.04
191
steps:
0 commit comments