208 lines
6.8 KiB
YAML
208 lines
6.8 KiB
YAML
name: NukiHub Release
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
name: Build ${{ matrix.board }} (${{ matrix.build }})
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
board: [esp32, esp32-s3, esp32-s3-oct, esp32-c3, esp32-c6, esp32-h2, esp32-solo1]
|
|
build: [release, debug]
|
|
env:
|
|
BOARD: ${{ matrix.board }}
|
|
VARIANT: ${{ matrix.name || matrix.board }}
|
|
BUILD: ${{ matrix.build }}
|
|
steps:
|
|
- name: Fix variant name
|
|
run: |
|
|
# remove dash character
|
|
export VARIANT=${VARIANT//-/}
|
|
echo "VARIANT=${VARIANT}" | tee -a ${GITHUB_ENV}
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.cache/pip
|
|
~/.platformio/.cache
|
|
~/.platformio/packages
|
|
key: ${{ runner.os }}-pio-${{ matrix.board }}
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.9'
|
|
- name: Install dependencies
|
|
run: make deps
|
|
- name: Add version info
|
|
env:
|
|
Version: ${{ github.run_id }}.${{ github.run_number }}.${{ github.run_attempt }}
|
|
run: |
|
|
sed -i "s/unknownbuildnr/$Version/g" src/Config.h
|
|
- name: Build ${{ matrix.build }} PlatformIO Project ${{ matrix.board }}
|
|
run: |
|
|
ORIGBOARD="${BOARD}"
|
|
if [ "$BUILD" = "debug" ]; then
|
|
BOARD="${BOARD}_dbg"
|
|
fi
|
|
echo "::group::Building with PlatformIO"
|
|
make updater_${ORIGBOARD}
|
|
make $BOARD
|
|
echo "::endgroup::"
|
|
- name: Add flash script
|
|
env:
|
|
DOC: resources/how-to-flash.txt
|
|
FILES: ${{ format('{0}/{1}', env.BUILD, env.VARIANT) }}
|
|
run: |
|
|
BOARD=`echo $BOARD | tr '[:lower:]' '[:upper:]'`
|
|
|
|
# look for documentation on flash and copy the command
|
|
command=`sed -n '/^Howto flash (esptool)$/,$p' ${DOC} | sed -n '/^## '"${BOARD}"'$/,\${ n; n; p; }' | head -n1`
|
|
|
|
if [ -z "$command" ]; then
|
|
echo "::error::Command not found in document ${DOC} for board ${BOARD}"
|
|
exit 1
|
|
fi
|
|
|
|
echo -n "Command: "
|
|
echo "$command" | tee ${FILES}/flash.sh
|
|
chmod a+x ${FILES}/flash.sh
|
|
|
|
- name: Upload Artifact ${{ matrix.board }}-${{ matrix.build }}
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ format('{0}-{1}-assets', env.VARIANT, matrix.build) }}
|
|
path: ${{ matrix.build }}/${{ env.VARIANT }}
|
|
release:
|
|
name: Release new version
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Git Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: binary
|
|
- name: Git Checkout master
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: master
|
|
path: master
|
|
sparse-checkout: |
|
|
resources/ota_manifest.py
|
|
src/Config.h
|
|
- name: Git Commands
|
|
run: |
|
|
git checkout --orphan newBinary
|
|
git branch -D binary
|
|
git branch -M binary
|
|
git rm --cached --ignore-unmatch -r *
|
|
- name: Get the version
|
|
id: get_version
|
|
run: echo "VERSION=$(cat master/src/Config.h | grep -oP '(?<=#define NUKI_HUB_VERSION \")(.*)(?=\")')" >> $GITHUB_OUTPUT
|
|
- name: Download release assets
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
path: release
|
|
pattern: '*-release-assets'
|
|
- name: Download debug assets
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
path: debug
|
|
pattern: '*-debug-assets'
|
|
- name: Build zip archives
|
|
id: zip
|
|
env:
|
|
VERSION: ${{ steps.get_version.outputs.VERSION }}
|
|
run: |
|
|
NUKI="NukiHub-${VERSION}"
|
|
ARTIFACTS=""
|
|
|
|
for FOLDER in release/*; do
|
|
MODEL=`echo "${FOLDER}" | cut -d '/' -f2 | cut -d '-' -f1 | tr '[:lower:]' '[:upper:]'`
|
|
ZIPFILE="${NUKI}-${MODEL}.zip"
|
|
|
|
echo "${FOLDER} -- ${ZIPFILE}"
|
|
cd $FOLDER
|
|
|
|
zip -9r ../../${ZIPFILE} * -x "webflash_nuki_hub_*.bin"
|
|
ARTIFACTS="${ARTIFACTS}${ZIPFILE},"
|
|
|
|
cd ../..
|
|
done
|
|
|
|
for FOLDER in debug/*; do
|
|
MODEL=`echo "${FOLDER}" | cut -d '/' -f2 | cut -d '-' -f1 | tr '[:lower:]' '[:upper:]'`
|
|
ZIPFILE="${NUKI}-${MODEL}-DEBUG.zip"
|
|
|
|
echo "${FOLDER} -- ${ZIPFILE}"
|
|
cd $FOLDER
|
|
|
|
zip -9r ../../${ZIPFILE} *
|
|
ARTIFACTS="${ARTIFACTS}${ZIPFILE},"
|
|
|
|
cd ../..
|
|
done
|
|
|
|
# remove last character
|
|
ARTIFACTS="${ARTIFACTS%?}"
|
|
echo "artifacts=${ARTIFACTS}" | tee -a ${GITHUB_OUTPUT}
|
|
- name: Create Release
|
|
id: create_release
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
prerelease: false
|
|
allowUpdates: true
|
|
updateOnlyUnreleased: false
|
|
draft: false
|
|
generateReleaseNotes: true
|
|
makeLatest: true
|
|
name: "Nuki Hub ${{ steps.get_version.outputs.VERSION }}"
|
|
artifactErrorsFailBuild: true
|
|
artifacts: ${{ steps.zip.outputs.artifacts }}
|
|
artifactContentType: application/zip
|
|
tag: ${{ steps.get_version.outputs.VERSION }}
|
|
- name: Copy binaries to ota and webflash and remove beta
|
|
env:
|
|
Version: ${{ github.run_id }}.${{ github.run_number }}.${{ github.run_attempt }}
|
|
run: |
|
|
mkdir -p ota/beta/
|
|
mkdir -p ota/debug/beta/
|
|
mkdir -p ota/master/
|
|
mkdir -p ota/debug/master/
|
|
mkdir -p webflash/
|
|
mkdir -p resources/
|
|
mkdir -p src/
|
|
cp -vf release/*/nuki_hub_*.bin ota/
|
|
cp -vf debug/*/nuki_hub_*.bin ota/debug/
|
|
cp -vf release/*/webflash_nuki_hub_*.bin webflash/
|
|
cp -vf master/resources/ota_manifest.py resources/ota_manifest.py
|
|
cp -vf master/src/Config.h src/Config.h
|
|
python3 resources/ota_manifest.py release $Version
|
|
python3 resources/ota_manifest.py beta none
|
|
find * -not -path "ota*" -not -path "webflash*" -delete
|
|
rm -rf ota/beta/*.bin
|
|
rm -rf ota/debug/beta/*.bin
|
|
rm -rf .github .gitignore .gitmodules
|
|
touch ota/beta/empty
|
|
touch ota/master/empty
|
|
touch ota/debug/beta/empty
|
|
touch ota/debug/master/empty
|
|
touch webflash/empty
|
|
- name: Commit binaries to binary
|
|
uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: "Update binaries"
|
|
file_pattern: 'ota/* ota/debug/* ota/master/* ota/debug/master/* ota/beta/* ota/debug/beta/* webflash/*'
|
|
branch: binary
|
|
skip_dirty_check: true
|
|
skip_fetch: true
|
|
skip_checkout: true
|
|
disable_globbing: true
|
|
add_options: '-f'
|
|
push_options: '-f'
|