2023-09-30 22:21:56 +03:00
|
|
|
name: CI BUILD
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore: [ "pages" ]
|
|
|
|
pull_request:
|
|
|
|
branches-ignore: [ "pages" ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-10-13 21:00:22 +03:00
|
|
|
|
2023-09-30 22:21:56 +03:00
|
|
|
- name: install Python3
|
|
|
|
run: sudo apt install python3
|
2023-10-13 21:00:22 +03:00
|
|
|
|
2023-09-30 22:21:56 +03:00
|
|
|
- name: build
|
2023-10-13 21:00:22 +03:00
|
|
|
run: ./build.sh
|
|
|
|
|
|
|
|
- name: check root dir
|
2023-09-30 22:21:56 +03:00
|
|
|
run: ls -la
|
2023-10-13 21:00:22 +03:00
|
|
|
|
|
|
|
- name: check iso_root
|
|
|
|
run: ls -la iso_root
|
|
|
|
|
|
|
|
- name: check bin
|
|
|
|
run: ls -la bin
|