bump version to 1.0.5 #90
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 z03mmc firmware | |
on: | |
push: | |
# branches: [ "master" ] | |
pull_request: | |
# branches: [ "master" ] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
TOOLCHAIN_DIR: ${{github.workspace}}/tc32 | |
SDK_DIR: ${{github.workspace}}/tl_zigbee_sdk | |
ARTIFACT_DIR: ${{github.workspace}}/build/src/ | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get toolchain | |
run: git clone https://github.com/devbis/tc32.git -b linux --depth 1 ${{ env.TOOLCHAIN_DIR }} | |
- name: Get SDK | |
run: git clone https://github.com/devbis/tl_zigbee_sdk.git -b 3.6.8.5 --depth 1 ${{ env.SDK_DIR }} | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DSDK_PREFIX=${{env.SDK_DIR}} -DTOOLCHAIN_PREFIX=${{env.TOOLCHAIN_DIR}} | |
- name: Build | |
id: make | |
run: | | |
cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target=z03mmc.zigbee | |
echo "status=success" >> $GITHUB_OUTPUT | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v3 | |
if: steps.make.outputs.status == 'success' && !cancelled() | |
with: | |
# Artifact name | |
name: firmware | |
# A file, directory or wildcard pattern that describes what to upload | |
path: | | |
${{ env.ARTIFACT_DIR }}/*.bin | |
${{ env.ARTIFACT_DIR }}/*.zigbee | |