forked from stlpine/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (24 loc) · 698 Bytes
/
Copy pathlinux.yml
File metadata and controls
29 lines (24 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Build kernel
on:
workflow_dispatch:
inputs:
commit:
description: 'Yo'
required: true
env:
BUILD_TYPE: Debug
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Get latest commit and unzip
shell: bash
run: wget https://github.com/vikiminki/linux/archive/${{github.event.inputs.commit}}.zip
run: unzip ${{github.event.inputs.commit}}.zip
- name: Build previously downloaded version
shell: bash
run: ./build-linux.sh ${{github.event.inputs.commit}} tinyconfig