Skip to content

Commit

Permalink
Merge release/k900 for 4.4.0 release (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
codygarver committed May 4, 2023
2 parents 82585ce + 2d7acfe commit 58c37a0
Show file tree
Hide file tree
Showing 31 changed files with 4,325 additions and 1,338 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
name: Start Tomcat and verify deployment
command: |
sudo /opt/tomcat/bin/catalina.sh start
sleep 5
sleep 10
if [[ `sudo grep "startup in" /opt/tomcat/logs/catalina.out | wc -l` -ne "1" ]]; then exit 1; fi
if [[ `wget -O - http://carmacloud:8080 | grep "CARMAcloud Login" | wc -l` -ne "1" ]]; then exit 2; fi
if [[ `wget -O - --post-data="uname=ccadmin&pword=admin_testpw" http://carmacloud:8080/api/auth/login | grep "token" | wc -l` -ne "1" ]]; then exit 3; fi
59 changes: 59 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Copyright (C) 2018-2022 LEIDOS.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.

# Configuration file for GitHub Actions
# CI will report failure if any executed command returns and error status
# Operations performed are as follows
# Build source code Documentation
# Run Doxygen Action
# Deploy documentation static webpage to gh-pages

name: Doxygen Action

# Controls when the action will run. Triggers the workflow on push or pull Request events but only for the develop branch
on:
push:
branches: [ develop ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Install graphvix to support Graph visualization and representing structural information as diagrams of abstract graphs and networks
- name: Install graphviz
run: sudo apt install graphviz && sudo dot -c
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Doxygen action for documentation of carma-platform source code by using mattnotmitt github actions workflow
- name: Doxygen Action
uses: mattnotmitt/[email protected]
with:
# Path to Doxyfile
doxyfile-path: "./Doxyfile" # default is ./Doxyfile
# Working directory
working-directory: "." # default is .
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: usdot-fhwa-stol/documentation
publish_branch: gh-pages
# default: gh-pages
publish_dir: ./docs/html/
destination_dir: ${{ github.event.repository.name }}
Loading

0 comments on commit 58c37a0

Please sign in to comment.