Skip to content

Commit

Permalink
Обновление конфигурации сборки
Browse files Browse the repository at this point in the history
  • Loading branch information
0Nera committed Sep 30, 2023
1 parent 3d9bcb1 commit 7a23210
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 110 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI BUILD

on:
push:
branches-ignore: [ "pages" ]
pull_request:
branches-ignore: [ "pages" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: install Python3
run: sudo apt install python3
- name: build
run: python3 build.py
- name: check
run: ls -la
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
kernel.elf
mseos.hdd
*.elf
*.hdd
*.iso
*.0

bin/
limine/
ovmf/
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@ def create_hdd(IMAGE_NAME):
compile_all()
create_hdd("mseos")

os.system("qemu-system-x86_64 -M q35 -m 8G -smp 8 -bios ovmf/OVMF.fd -hda mseos.hdd")
print("qemu-system-x86_64 -M q35 -m 8G -smp 8 -bios ovmf/OVMF.fd -hda mseos.hdd")
106 changes: 0 additions & 106 deletions build.sh

This file was deleted.

2 changes: 1 addition & 1 deletion configs/limine.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TIMEOUT=5
DEFAULT_ENTRY=0
INTERFACE_BRANDING=By Aren Elchinyan [Арен Елчинян]1234
INTERFACE_BRANDING=By Aren Elchinyan

TERM_FONT=boot:///CYRILL2.F16
TERM_FONT_SIZE=8x16
Expand Down

0 comments on commit 7a23210

Please sign in to comment.