Установка флага исполнения до запуска скрипта
This commit is contained in:
parent
aa544dae2a
commit
36ffee13ca
|
@ -1,34 +1,34 @@
|
||||||
name: CI BUILD
|
name: CI BUILD
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches-ignore: [ "pages" ]
|
branches-ignore: [ "pages" ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches-ignore: [ "pages" ]
|
branches-ignore: [ "pages" ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: install depends
|
- name: install depends
|
||||||
run: sudo apt install clang-format python3 git gdisk gcc g++ xorriso make mtools curl
|
run: sudo apt install clang-format python3 git gdisk gcc g++ xorriso make mtools curl
|
||||||
|
|
||||||
- name: install limine
|
- name: install limine
|
||||||
run: |
|
run: |
|
||||||
git clone https://github.com/limine-bootloader/limine.git --branch=v5.x-branch-binary --depth=1
|
git clone https://github.com/limine-bootloader/limine.git --branch=v5.x-branch-binary --depth=1
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
run: ./build.sh
|
run: chmod +x build.sh && ./build.sh
|
||||||
|
|
||||||
- name: check root dir
|
- name: check root dir
|
||||||
run: ls -la
|
run: ls -la
|
||||||
|
|
||||||
- name: check iso_root
|
- name: check iso_root
|
||||||
run: ls -la iso_root
|
run: ls -la iso_root
|
||||||
|
|
||||||
- name: check bin
|
- name: check bin
|
||||||
run: ls -la bin
|
run: ls -la bin
|
||||||
|
|
Loading…
Reference in New Issue