Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
brichards64 authored Jul 18, 2023
0 parents commit 611e79b
Show file tree
Hide file tree
Showing 21 changed files with 3,287 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/Doxygen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# This is a basic workflow to help you get started with Actions

name: Doxygen

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# 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"

Doxygen:
# 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:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Make docs folder
run: mkdir docs-output

# Runs a single command using the runners shell
- name: Doxygen Action
uses: mattnotmitt/[email protected]


- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs-output

27 changes: 27 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: C/C++ CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build_ubuntu-latest:

runs-on: ubuntu-latest
container: ghcr.io/hyperk/hk-software:main
steps:
- name: Framework build
run: cd /usr/local/hk/ToolFrameworkCore/src/ && make
- name: build hk-datamodel
run: git clone https://github.com/hyperk/hk-DataModel.git /usr/local/hk/hk-ToolApp/hk-DataModel && cd /usr/local/hk/hk-ToolApp/hk-DataModel && make
- uses: actions/checkout@v2
- name: build
run: make



21 changes: 21 additions & 0 deletions .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run clang-format Linter

on: [push]

jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/hyperk/clang_format:latest
steps:
- uses: actions/checkout@v2
- name: make_safe
run: git config --global --add safe.directory '*'
- name: format
run: git clone https://github.com/hyperk/hk-ClangFormat.git && cd hk-ClangFormat && ./run.sh && cd .. && rm -rf hk-ClangFormat
- uses: EndBug/add-and-commit@v9
with:
author_name: Clang Robot
author_email: [email protected]
message: 'Committing clang-format changes'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*~
*.o
*.so
Loading

0 comments on commit 611e79b

Please sign in to comment.