- Add additional is_power_of_two helper for matter use case to determ… #33
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: Unify code generation | |
permissions: | |
contents: write | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
env: | |
ZAP_TEST_TIMEOUT: 3600000 | |
ZAP_TEMPSTATE: 1 | |
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} | |
P12_PASSWORD: ${{ secrets.P12_PASSWORD }} | |
TRUSTED_CERTIFICATE_BASE64: ${{ secrets.TRUSTED_CERTIFICATE_BASE64 }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
KEYCHAIN_PASSWORD: silabs | |
jobs: | |
prepare-zap-and-regenerate-unify: | |
name: Prepare Zap and regenerate Unify | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [20.x] | |
os: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- run: sudo ./src-script/install-packages-ubuntu | |
- run: sudo apt-get install --fix-missing libxml2-utils | |
- run: node --version | |
- run: npm --version | |
- run: npm ci | |
- run: npm rebuild canvas --update-binary | |
- run: npm rebuild libxmljs --update-binary | |
- run: npm run metafile-check | |
- run: npm run version-stamp | |
- run: npm run build-spa | |
- run: npm run self-check | |
- name: Clone the Unify SDK | |
env: | |
GIT_CLONE_PROTECTION_ACTIVE: false | |
run: git clone https://github.com/SiliconLabs/UnifySDK.git unify_sdk | |
- name: Regen zap files with the cloned sdk, using latest. | |
run: node ./src-script/unify-regen.js ./unify_sdk/ | |
- name: Check for differences in the cloned repository | |
run: | | |
if [ -n "$(git status --porcelain)" ]; then | |
echo "Changes detected." | |
exit 1 | |
else | |
echo "No untracked or modified files detected." | |
exit 0 | |
fi | |
working-directory: unify_sdk | |
- name: Show differences if any | |
if: failure() | |
run: git status --porcelain | |
working-directory: unify_sdk |