File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ name : FunKey-OS Build
2+
3+ on :
4+ workflow_dispatch :
5+ branches : [ master ]
6+
7+ jobs :
8+ build :
9+
10+ runs-on : ubuntu-20.04
11+
12+ steps :
13+ - uses : actions/checkout@v2
14+ - name : Install dependencies
15+ run : |
16+ sudo apt-get update
17+ sudo apt-get install -y -q --no-install-recommends make binutils build-essential gcc g++ patch bzip2 perl cpio unzip rsync file bc wget python python-dev xxd libncurses5-dev cvs git mercurial rsync liblscp-dev subversion python3 python3-dev python3-distutils python3-setuptools ca-certificates openssh-client expect locales sudo procps
18+ sudo apt-get -y autoremove
19+ sudo apt-get -y clean
20+ sudo rm -rf /var/lib/apt/lists/*
21+ sudo sed -i 's/# \(en_US.UTF-8\)/\1/' /etc/locale.gen
22+ sudo locale-gen --purge --lang en_US.UTF-8
23+ - name : Build SDK
24+ run : make sdk
25+ - uses : actions/upload-artifact@v2
26+ with :
27+ name : Upload artifacts
28+ path : |
29+ images/*
30+ br.log
You can’t perform that action at this time.
0 commit comments