File tree 7 files changed +31
-100
lines changed
7 files changed +31
-100
lines changed Original file line number Diff line number Diff line change @@ -268,6 +268,7 @@ jobs:
268
268
ulimit -c unlimited -S
269
269
timeout --signal=SIGABRT 60m ./tst/webrtc_client_test
270
270
sample-check :
271
+ if : github.repository == 'awslabs/amazon-kinesis-video-streams-webrtc-sdk-c'
271
272
runs-on : ubuntu-latest
272
273
env :
273
274
AWS_KVS_LOG_LEVEL : 2
Original file line number Diff line number Diff line change
1
+ name : Doxygen GitHub Pages Deploy Action WebRTC C SDK
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ - develop
8
+
9
+ jobs :
10
+ generate-and-deploy-doxygen :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - name : Checkout repository
14
+ uses : actions/checkout@v2
15
+
16
+ - name : Install requirements
17
+ run : sudo apt-get install doxygen graphviz -y
18
+ shell : bash
19
+
20
+ - name : Generate Doxygen Documentation
21
+ run : doxygen Doxyfile
22
+ shell : bash
23
+
24
+ - name : Deploy
25
+ uses : JamesIves/github-pages-deploy-action@v4.2.5
26
+ with :
27
+ folder : doc/html
28
+ branch : gh-pages
29
+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
#---------------------------------------------------------------------------
6
6
PROJECT_NAME = "Amazon Kinesis Webrtc C SDK"
7
7
OUTPUT_DIRECTORY = doc
8
- INPUT = ../ src/include Introduction.md ../ src/source/
8
+ INPUT = src/include Introduction.md src/source/
9
9
FILE_PATTERNS = *.h *.c
10
10
RECURSIVE = YES
11
11
EXAMPLE_PATTERNS = *
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments