Skip to content

Commit

Permalink
fix: try to make codeql work
Browse files Browse the repository at this point in the history
  • Loading branch information
sevki committed Mar 15, 2024
1 parent 38be095 commit 4404623
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# if any file is changed
- Documentation:
- any:
- changed-files:
- any-glob-to-any-file:
- '/Documentation/**'
- Rust:
- any:
- changed-files:
- any-glob-to-any-file:
- '/**/*.rs'
- '/**/Cargo.toml'
- '/**/Cargo.lock'
- '/**/rust-toolchain'
- Unsafe:
- any:
- changed-files:
- any-glob-to-any-file:
- '/**/*.c'
- '/**/*.h'
- '/**/*.S'
- Chore:
- any:
- changed-files:
- any-glob-to-any-file:
- '.github/**'
3 changes: 2 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ jobs:

- name: Build kernel image
run: make -j$(nproc) bzImage

- name: clean up space
run: rm -rf ./arch/x86_64
# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
. sphinx/bin/activate
pip install -r ./Documentation/sphinx/requirements.txt
make htmldocs
make LLVM=1 rustdoc
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ jobs:

- name: Build kernel image
run: make -j$(nproc) bzImage
- uses: actions/upload-artifact@v4
with:
name: x86_64
path: arch/x86_64
build_pages:
runs-on: ubuntu-latest
steps:
Expand All @@ -37,3 +41,8 @@ jobs:
. sphinx/bin/activate
pip install -r ./Documentation/sphinx/requirements.txt
make htmldocs
make LLVM=1 rustdoc
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './Documentation/output'
4 changes: 4 additions & 0 deletions .github/workflows/publlsh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
run: make olddefconfig
- name: Build kernel image
run: make -j$(nproc) bzImage
- uses: actions/upload-artifact@v4
with:
name: x86_64
path: arch/x86_64
- name: Upload Release Artifact
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="Documentation/images/okLinux.png" width="200">

# okLinux
# okLinux

> [!CAUTION]
> Currently, this is a work in progress and is not ready for use.
Expand Down
2 changes: 2 additions & 0 deletions docdeps
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ apt-get install --yes --no-install-recommends \
python3-argh \
python3-pip \
python3-rich \
python-pydot \
python-pydot-ng \
qemu-system-x86 \
rsync \
screen \
Expand Down

0 comments on commit 4404623

Please sign in to comment.