Убран python из CodeQL #214
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI BUILD | |
on: | |
push: | |
branches-ignore: [ "pages" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install depends | |
run: | | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install clang-format python3 git gdisk gcc g++ xorriso make mtools curl dos2unix | |
- name: install limine | |
run: | | |
git clone https://git.synapseos.ru/mirrors/limine.git --branch=v5.x-branch-binary --depth=1 | |
cd limine && make && cd .. | |
- name: build | |
run: | | |
dos2unix *.sh | |
chmod +x *.sh | |
./build_mods.sh | |
./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 |