13
13
# * * * * *
14
14
- cron : ' 0 */6 * * *'
15
15
16
+ defaults :
17
+ run :
18
+ shell : bash
19
+
16
20
jobs :
17
21
run :
18
22
name : Build with IDF ${{ matrix.idf_branch }}
31
35
GIT_AUTHOR_EMAIL : ${{ secrets.PUSH_EMAIL }}
32
36
GIT_COMMITTER_EMAIL : ${{ secrets.PUSH_EMAIL }}
33
37
IDF_BRANCH : ${{ matrix.idf_branch }}
34
- shell : bash
35
38
run : |
36
39
git checkout ${{ matrix.idf_branch }}
37
40
bash ./build.sh -d
45
48
# check:
46
49
# name: Check if result should be deployed
47
50
# runs-on: ubuntu-latest
51
+ # strategy:
52
+ # matrix:
53
+ # branch: [release/v5.1, release/v4.4] #, release/v3.3]
48
54
# outputs:
55
+ # idf_branch: ${{ steps.check.outputs.idf_branch }}
49
56
# idf_commit: ${{ steps.check.outputs.idf_commit }}
50
57
# ar_branch: ${{ steps.check.outputs.ar_branch }}
51
58
# ar_new_commit_message: ${{ steps.check.outputs.ar_new_commit_message }}
@@ -64,12 +71,14 @@ jobs:
64
71
# GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }}
65
72
# GIT_AUTHOR_EMAIL: ${{ secrets.PUSH_EMAIL }}
66
73
# GIT_COMMITTER_EMAIL: ${{ secrets.PUSH_EMAIL }}
74
+ # IDF_BRANCH: ${{ matrix.idf_branch }}
67
75
# run: bash ./tools/check-deploy-needed.sh
68
76
69
77
# build:
70
78
# name: Build Libs for ${{ matrix.target }}
71
79
# runs-on: ubuntu-latest
72
80
# needs: check
81
+ # if: needs.check.outputs.libs_has_commit == '0' || needs.check.outputs.ar_has_commit == '0'
73
82
# strategy:
74
83
# matrix:
75
84
# target: [esp32, esp32s2, esp32s3, esp32c3, esp32c6, esp32h2]
99
108
# GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }}
100
109
# GIT_AUTHOR_EMAIL: ${{ secrets.PUSH_EMAIL }}
101
110
# GIT_COMMITTER_EMAIL: ${{ secrets.PUSH_EMAIL }}
111
+ # IDF_BRANCH: ${{ needs.check.outputs.idf_branch }}
102
112
# IDF_COMMIT: ${{ needs.check.outputs.idf_commit }}
103
113
# AR_BRANCH: ${{ needs.check.outputs.ar_branch }}
104
114
# AR_NEW_COMMIT_MESSAGE: ${{ needs.check.outputs.ar_new_commit_message }}
0 commit comments