hide battery monitoring if no battery is available (#705) #367
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: build_package_rock5_debian | |
on: | |
push: | |
branches: | |
- "2.5-evo" | |
- "dev-release" | |
- "release" | |
- "rapha-dev" | |
jobs: | |
build: | |
#runs-on: ubuntu-18.04 | |
runs-on: ubuntu-22.04 | |
env: | |
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }} | |
steps: | |
- name: Maximize build space | |
uses: easimon/maximize-build-space@master | |
with: | |
root-reserve-mb: 512 | |
swap-size-mb: 1024 | |
remove-dotnet: 'true' | |
remove-android: 'true' | |
remove-haskell: 'true' | |
overprovision-lvm: 'true' | |
- name: test | |
run: | | |
echo "DT=$(date +'%Y-%m-%d_%H%M')" >> $GITHUB_ENV | |
echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Building QOpenHD in CHROOT | |
run: | | |
git clone https://github.com/OpenHD/OpenHD-ChrootCompiler /opt/OpenHD-ChrootCompiler | |
mkdir -p /opt/OpenHD-ChrootCompiler/additionalFiles | |
git clone https://github.com/OpenHD/QOpenHD -b ${{ github.ref_name }} /opt/OpenHD-ChrootCompiler/additionalFiles/ --recursive | |
echo $CLOUDSMITH_API_KEY > /opt/OpenHD-ChrootCompiler/additionalFiles/cloudsmith_api_key.txt | |
echo "standard" > /opt/OpenHD-ChrootCompiler/additionalFiles/custom.txt | |
echo "arm64" > /opt/OpenHD-ChrootCompiler/additionalFiles/arch.txt | |
echo "debian" > /opt/OpenHD-ChrootCompiler/additionalFiles/distro.txt | |
echo "bullseye" > /opt/OpenHD-ChrootCompiler/additionalFiles/flavor.txt | |
echo "${{ github.ref_name }}" > /opt/OpenHD-ChrootCompiler/additionalFiles/repo.txt | |
cd /opt/OpenHD-ChrootCompiler/ | |
sudo apt update | |
sudo bash install_dep.sh | |
sudo bash build.sh rock5b $API_KEY debian bullseye | |
- name: debug | |
run: | |
cp -r /opt/OpenHD-ChrootCompiler/out/* . | |
- name: Compose release filename | |
run: echo "artifact_name=QOpenHD-${{ env.DT }}" >> $GITHUB_ENV | |
- name: Upload to Github | |
uses: 'actions/upload-artifact@v4' | |
with: | |
name: "QOpenHD-${{ env.DT }}" | |
path: | | |
*.deb | |
- name: Push | |
id: push | |
if: github.ref_name == 'release' || github.ref_name == 'dev-release' | |
uses: cloudsmith-io/action@master | |
with: | |
api-key: ${{ secrets.CLOUDSMITH_API_KEY }} | |
command: "push" | |
format: "deb" | |
owner: "openhd" | |
repo: ${{ github.ref_name }} | |
distro: "debian" | |
release: "bullseye" | |
republish: "true" # needed ONLY if version is not changing | |
file: "*.deb" | |