Skip to content

Commit

Permalink
Generate Doxygen (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtyson123 committed Jan 5, 2024
1 parent a5276f7 commit 9abe417
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 37 deletions.
36 changes: 0 additions & 36 deletions .github/workflows/documentation.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/max-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,25 @@ jobs:
with:
name: Kernel Binary
path: maxOS.bin

generate-docs:
# The type of runner that the job will run on
runs-on: ubuntu-20.04

# 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: Generate Docs
run: |
make documentation
- name: Upload to branch
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: docs
FOLDER: docs/doxy
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: "Build: ({sha}) {msg}"
2 changes: 1 addition & 1 deletion kernel/src/hardwarecommunication/interrupts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using namespace maxOS::system;

InterruptManager* InterruptManager::s_active_interrupt_manager = 0;
OutputStream* InterruptManager::s_error_messages = 0;
InterruptManager::GateDescriptor InterruptManager::s_interrupt_descriptor_table[256];
GateDescriptor InterruptManager::s_interrupt_descriptor_table[256];

///__Handler__

Expand Down

0 comments on commit 9abe417

Please sign in to comment.