mirror of
https://github.com/0Nera/BMOSP.git
synced 2025-01-11 23:29:23 +03:00
Исправление системы сборки
This commit is contained in:
parent
405467fdf1
commit
e7113d6c5d
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
@ -13,9 +13,18 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: install Python3
|
- name: install Python3
|
||||||
run: sudo apt install python3
|
run: sudo apt install python3
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
run: python3 build.py
|
run: ./build.sh
|
||||||
- name: check
|
|
||||||
|
- name: check root dir
|
||||||
run: ls -la
|
run: ls -la
|
||||||
|
|
||||||
|
- name: check iso_root
|
||||||
|
run: ls -la iso_root
|
||||||
|
|
||||||
|
- name: check bin
|
||||||
|
run: ls -la bin
|
||||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -23,7 +23,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
python3 build.py
|
./build.sh
|
||||||
cp kernel.elf x86_64-kernel.elf
|
cp kernel.elf x86_64-kernel.elf
|
||||||
cp mseos.hdd x86_64-mseos.hdd
|
cp mseos.hdd x86_64-mseos.hdd
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#define VERSION_MAJOR 0
|
#define VERSION_MAJOR 0
|
||||||
#define VERSION_MINOR 1
|
#define VERSION_MINOR 1
|
||||||
#define VERSION_BUILD 22
|
#define VERSION_BUILD 24
|
||||||
|
@ -94,7 +94,7 @@ def check_limine():
|
|||||||
|
|
||||||
|
|
||||||
def check_tools():
|
def check_tools():
|
||||||
required_tools = ["g++", "xorriso", "make", "mtools"]
|
required_tools = ["gcc", "g++", "xorriso", "make", "mtools", "curl"]
|
||||||
missing_tools = []
|
missing_tools = []
|
||||||
|
|
||||||
for tool in required_tools:
|
for tool in required_tools:
|
||||||
|
Loading…
Reference in New Issue
Block a user