Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate Doxygen to GitHub Actions #1416

Merged
merged 25 commits into from
Feb 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .github/github_deploy_key.enc
Binary file not shown.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ jobs:
ulimit -c unlimited -S
timeout --signal=SIGABRT 60m ./tst/webrtc_client_test
sample-check:
if: github.repository == 'awslabs/amazon-kinesis-video-streams-webrtc-sdk-c'
runs-on: ubuntu-latest
env:
AWS_KVS_LOG_LEVEL: 2
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/doxygen-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Doxygen GitHub Pages Deploy Action WebRTC C SDK

on:
push:
branches:
- master
- develop

jobs:
generate-and-deploy-doxygen:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install requirements
run: sudo apt-get install doxygen graphviz -y
shell: bash

- name: Generate Doxygen Documentation
run: doxygen Doxyfile
shell: bash

- name: Deploy
uses: JamesIves/[email protected]
with:
folder: doc/html
branch: gh-pages

99 changes: 0 additions & 99 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/Doxyfile → Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#---------------------------------------------------------------------------
PROJECT_NAME = "Amazon Kinesis Webrtc C SDK"
OUTPUT_DIRECTORY = doc
INPUT = ../src/include Introduction.md ../src/source/
INPUT = src/include Introduction.md src/source/
FILE_PATTERNS = *.h *.c
RECURSIVE = YES
EXAMPLE_PATTERNS = *
Expand Down
File renamed without changes.
File renamed without changes.