Fix and prettify web UI #171
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'info' | |
type: choice | |
options: | |
- off | |
- error | |
- warn | |
- info | |
- debug | |
- trace | |
bmcd_version: | |
description: 'BMC daemon version' | |
required: false | |
type: string | |
pull_request: | |
branches: ["master"] | |
push: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
RUST_LOG: ${{ inputs.logLevel }} | |
steps: | |
- name: Maximize build space | |
uses: AdityaGarg8/remove-unwanted-software@v1 | |
with: | |
remove-android: 'true' | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' | |
- name: get version | |
run: echo "BUILD_VERSION=`git describe --tags`" >> $GITHUB_ENV | |
- name: install build host packages | |
run: | | |
sudo apt-get update &&\ | |
sudo apt-get install \ | |
build-essential \ | |
bc \ | |
subversion \ | |
git-core \ | |
libncurses5-dev \ | |
zlib1g-dev \ | |
gawk \ | |
flex \ | |
quilt \ | |
libssl-dev \ | |
xsltproc \ | |
libxml-parser-perl \ | |
mercurial \ | |
bzr \ | |
ecj \ | |
cvs \ | |
unzip \ | |
lib32z1 \ | |
lib32z1-dev \ | |
lib32stdc++6 \ | |
libstdc++6 \ | |
libncurses-dev \ | |
u-boot-tools \ | |
mkbootimg \ | |
cpio \ | |
rsync \ | |
xxd -y | |
- name: conditional bmcd version injection | |
if: inputs.bmcd_version != '' | |
run: | | |
sed -ir 's#^TPI_RS_VERSION.*#TPI_RS_VERSION=${{ inputs.bmcd_version }}#g' ${{ github.workspace }}/tp2bmc/package/tpi_rs/tpi_rs.mk | |
- name: configure | |
run: | | |
cd buildroot | |
make BR2_EXTERNAL=../tp2bmc tp2bmc_defconfig | |
- name: build | |
run: | | |
cd buildroot | |
make | |
- name: build swupdate | |
run: | | |
cd buildroot/output/images/ | |
cp -ra ../../../tp2bmc/swupdate/* . | |
./genSWU.sh ${{ env.BUILD_VERSION }} | |
- name: upload | |
uses: actions/upload-artifact@v3 | |
with: | |
if-no-files-found: error | |
name: tp2-bmc-${{ env.BUILD_VERSION }} | |
path: | | |
buildroot/output/images/turingpi_${{ env.BUILD_VERSION }}.swu | |
buildroot/output/images/buildroot_linux_nand_uart3.img | |
buildroot/output/images/zImage | |
buildroot/output/images/sun8iw20p1-t113-turingmachines-tp2bmc.dtb | |