We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 694a091 commit d821177Copy full SHA for d821177
.github/workflows/cxx.yaml .github/workflows/cxx.yml.github/workflows/cxx.yaml renamed to .github/workflows/cxx.yml
@@ -2,7 +2,7 @@
2
#
3
# SPDX-License-Identifier: Apache-2.0
4
5
-name: Build and Test
+name: cmake Build and Test
6
7
on:
8
push:
@@ -12,12 +12,14 @@ on:
12
workflow_dispatch:
13
14
jobs:
15
- build_and_test:
+ cxx:
16
runs-on: ubuntu-24.04
17
steps:
18
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
19
with:
20
submodules: recursive
21
+ persist-credentials: false
22
+
23
- run: cmake -GNinja -DONNX_BUILD_TESTS=ON -B build -S .
24
- run: cmake --build build
25
- run: cmake --build build -t test
0 commit comments