Skip to content

Commit

Permalink
check windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
devbis committed Nov 26, 2023
1 parent 5ca4d6c commit 09dc662
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
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: windows-latest

steps:
- uses: actions/checkout@v3

- name: Get toolchain
run: git clone https://github.com/devbis/tc32.git -b windows --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: Build LYWSD03MMC
id: lywsd03mmc
run: |
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DSDK_PREFIX=${{env.SDK_DIR}} -DTOOLCHAIN_PREFIX=${{env.TOOLCHAIN_DIR}} -DMANUFACTURER_CODE=0x1141
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.lywsd03mmc.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

0 comments on commit 09dc662

Please sign in to comment.