Изменение прав доступа

This commit is contained in:
Aren 2023-09-30 22:21:56 +03:00
parent 7a232105b8
commit a992b9df8c
2 changed files with 32 additions and 32 deletions

View File

@ -1,21 +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
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

View File

@ -1,12 +1,12 @@
#include <limine.h>
// Точка входа
extern "C" void _start() {
asm volatile("cli");
for (;;) {
asm volatile("hlt");
}
#include <limine.h>
// Точка входа
extern "C" void _start() {
asm volatile("cli");
for (;;) {
asm volatile("hlt");
}
}