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.
1 parent c377907 commit 67391a6Copy full SHA for 67391a6
2 files changed
.github/workflows/samples-cpp-oatpp-client.yaml
@@ -0,0 +1,30 @@
1
+name: Samples cpp oat++ client
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "samples/client/petstore/cpp-oatpp/**"
7
+ pull_request:
8
+ paths:
9
10
11
+env:
12
+ GRADLE_VERSION: 6.9
13
14
+jobs:
15
+ build:
16
+ name: Build cpp oat++ client
17
+ strategy:
18
+ matrix:
19
+ sample:
20
+ - samples/client/petstore/cpp-oatpp
21
+ os:
22
+ - ubuntu-latest
23
+ - macOS-latest
24
+ - windows-latest
25
+ runs-on: ${{ matrix.os }}
26
+ steps:
27
+ - uses: actions/checkout@v4
28
+ - name: Build
29
+ working-directory: ${{ matrix.sample }}
30
+ run: cmake -B build && cmake --build build --verbose
.github/workflows/samples-cpp-oatpp-server.yaml
@@ -13,7 +13,7 @@ env:
jobs:
build:
- name: Build cpp qt client
+ name: Build cpp oat++ server
strategy:
matrix:
sample:
0 commit comments