forked from project-chip/zap
-
Notifications
You must be signed in to change notification settings - Fork 4
71 lines (61 loc) · 1.98 KB
/
unify.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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