Skip to content
This repository was archived by the owner on Feb 18, 2022. It is now read-only.

Commit 1a71ca6

Browse files
committed
Setup github actions
1 parent e3b51af commit 1a71ca6

3 files changed

Lines changed: 28 additions & 44 deletions

File tree

.drone.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

.github/workflows/BuildKernel.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build Kernel Package
2+
on: [push]
3+
jobs:
4+
Lint:
5+
runs-on: ubuntu-18.04
6+
steps:
7+
- name: Checkout repo
8+
uses: actions/checkout@v2
9+
- name: Set up Python 3.9
10+
uses: actions/setup-python@v2
11+
- name: Install dependencies
12+
run: |
13+
python -m pip install --upgrade pip
14+
pip install yamllint
15+
sudo apt-get install shellcheck bash
16+
- name: Analysing the code
17+
run: |
18+
yamllint .
19+
shellcheck ./*.sh
20+
21+
build:
22+
runs-on: ubuntu-20.04
23+
steps:
24+
- name: Checkout repo
25+
uses: actions/checkout@v2
26+
- name: Build in Docker
27+
run: sudo ./build.sh

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/patches/custom-drivers.patch
22
/releases
33
/linux-*
4+
/.idea

0 commit comments

Comments
 (0)