Commit d7b1e72 1 parent 6400d49 commit d7b1e72 Copy full SHA for d7b1e72
File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " Stoney kernel"
2
+ on :
3
+ push :
4
+ branches : [ "main" ]
5
+ workflow_dispatch :
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Maximize build space
12
+ uses : easimon/maximize-build-space@master
13
+ with :
14
+ root-reserve-mb : 5120
15
+ swap-size-mb : 1024
16
+ remove-dotnet : ' true'
17
+ - name : Check out
18
+ uses : actions/checkout@v3
19
+ - name : Install dependencies
20
+ run : sudo apt update; sudo apt install -y git build-essential ncurses-dev xz-utils libssl-dev bc flex libelf-dev bison binutils
21
+ - name : Build kernel
22
+ run : bash build.sh
23
+ - name : Upload build artifacts
24
+ uses : actions/upload-artifact@v3
25
+ with :
26
+ name : stoney-kernel
27
+ path : |
28
+ build/kernel.tar.gz
You can’t perform that action at this time.
0 commit comments