File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 1- name : CI Tests
1+ name : [Kafka API] CI Tests
22
33on : [push, pull_request]
44
99 BUILD_SUB_DIR : build/sub-build
1010
1111jobs :
12- on_unix-like :
12+ kafka-api-tests :
1313 runs-on : ${{ matrix.os }}
1414
1515 env :
@@ -111,8 +111,6 @@ jobs:
111111
112112 if [ ${CXX_VERSION} ]; then
113113 export CMAKE_CXX_FLAGS="-DCMAKE_CXX_FLAGS=\"-std=${CXX_VERSION}\""
114- else
115- export CMAKE_CXX_FLAGS="-DCMAKE_CXX_FLAGS=\"-std=c++17\""
116114 fi
117115
118116 if [ ${BUILD_TYPE} ]; then
Original file line number Diff line number Diff line change 1- name : Generate Documents
1+ name : [Kafka API] Generate Documents
22
33on :
44 pull_request :
77 - master
88
99jobs :
10- build_doc :
11- name : Build Doc
10+ kafka-api-build-doc :
1211 runs-on : ubuntu-20.04
1312 env :
1413 BUILD_SUB_DIR : build/sub-build
1514 steps :
1615 - uses : actions/checkout@v2
1716 - name : Install Dependencies
1817 run : |
19- # Update the package list
20- sudo apt update
2118 mkdir -p $BUILD_SUB_DIR
2219 cd $BUILD_SUB_DIR
2320
@@ -31,16 +28,19 @@ jobs:
3128 run : |
3229 cd $BUILD_SUB_DIR
3330 cmake ../.. -DBUILD_OPTION_DOC_ONLY=ON
31+
3432 - name : Build
3533 run : |
3634 cd $BUILD_SUB_DIR
3735 make VERBOSE=1
36+
3837 - name : Copy
3938 run : |
4039 mkdir doc-gen
4140 cp $BUILD_SUB_DIR/doc/README.html doc-gen
4241 cp -r $BUILD_SUB_DIR/doc/markdown doc-gen
4342 cp -r $BUILD_SUB_DIR/doc/doxygen doc-gen
43+
4444 - name : Upload
4545 uses : actions/upload-artifact@v2
4646 with :
You can’t perform that action at this time.
0 commit comments