Исправление системы сборки

This commit is contained in:
Aren Elchinyan 2023-10-13 21:00:22 +03:00
parent 405467fdf1
commit e7113d6c5d
4 changed files with 14 additions and 5 deletions

View File

@ -13,9 +13,18 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: install Python3
run: sudo apt install python3
- name: build
run: python3 build.py
- name: check
run: ./build.sh
- name: check root dir
run: ls -la
- name: check iso_root
run: ls -la iso_root
- name: check bin
run: ls -la bin

View File

@ -23,7 +23,7 @@ jobs:
- name: Build
run: |
python3 build.py
./build.sh
cp kernel.elf x86_64-kernel.elf
cp mseos.hdd x86_64-mseos.hdd

View File

@ -1,3 +1,3 @@
#define VERSION_MAJOR 0
#define VERSION_MINOR 1
#define VERSION_BUILD 22
#define VERSION_BUILD 24

View File

@ -94,7 +94,7 @@ def check_limine():
def check_tools():
required_tools = ["g++", "xorriso", "make", "mtools"]
required_tools = ["gcc", "g++", "xorriso", "make", "mtools", "curl"]
missing_tools = []
for tool in required_tools: