summaryrefslogtreecommitdiff
path: root/.github/workflows/regression_test.yml
blob: 507d6c1915972ed2667a83b9f6c0ff71920c61b9 (plain)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# This is a basic workflow that is manually triggered

name: regression_test

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
  workflow_dispatch:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  NetXDuo:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      build_script: ./scripts/build_nxd.sh
      test_script: ./scripts/test_nxd.sh
      cmake_path: ./test/cmake/netxduo
      result_affix: NetXDuo
      skip_deploy: true
  Web:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      build_script: ./scripts/build_web.sh
      test_script: ./scripts/test_web.sh
      cmake_path: ./test/cmake/web
      result_affix: Web
      skip_deploy: true
  PTP:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      build_script: ./scripts/build_ptp.sh
      test_script: ./scripts/test_ptp.sh
      cmake_path: ./test/cmake/ptp
      result_affix: PTP
      skip_deploy: true
  MQTT:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      build_script: ./scripts/build_mqtt.sh
      test_script: ./scripts/test_mqtt.sh
      cmake_path: ./test/cmake/mqtt
      result_affix: MQTT
      skip_deploy: true
  NetXDuo64:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      build_script: ./scripts/build_nxd64.sh
      test_script: ./scripts/test_nxd64.sh
      cmake_path: ./test/cmake/netxduo64
      result_affix: NetXDuo64
      skip_deploy: true
  NetXDuo_Fast:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      build_script: ./scripts/build_nxd_fast.sh
      test_script: ./scripts/test_nxd_fast.sh
      cmake_path: ./test/cmake/netxduo_fast
      result_affix: NetXDuo_Fast
      skip_deploy: true
      skip_coverage: true
  Azure_IoT:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      build_script: ./scripts/build_azure_iot.sh
      test_script: ./scripts/test_azure_iot.sh
      cmake_path: ./test/cmake/azure_iot
      result_affix: Azure_IoT
      skip_deploy: true
  Azure_IoT_Windows:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
    runs-on: windows-2019
    steps:
    - name: Check out the repository
      uses: actions/checkout@v4
      with:
        submodules: true
    - name: Checkout submodules
      run: |
        if (!(Test-Path ./test/cmake/threadx)) {git clone https://github.com/eclipse-threadx/threadx.git ./test/cmake/threadx --depth 1}
    - name: CMake
      run: |
        mkdir build
        cd build
        cmake ../test/cmake/azure_iot -A Win32
    - name: Build
      run: |
        cd build
        cmake --build .
  Secure:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      build_script: ./scripts/build_secure.sh
      test_script: ./scripts/test_secure.sh
      cmake_path: ./test/cmake/nx_secure
      result_affix: Secure
      skip_deploy: true
  Crypto:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      build_script: ./scripts/build_crypto.sh
      test_script: ./scripts/test_crypto.sh
      cmake_path: ./test/cmake/crypto
      result_affix: Crypto
      skip_deploy: true
  Secure_Interoperability:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      install_script: ./scripts/install_secure.sh
      build_script: ./scripts/build_secure_interoperability.sh
      test_script: ./scripts/test_secure_interoperability.sh
      cmake_path: ./test/cmake/nx_secure_interoperability
      result_affix: Secure_Interoperability
      skip_deploy: true
  MQTT_Interoperability:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      install_script: ./scripts/install_mqtt.sh
      build_script: ./scripts/build_mqtt_interoperability.sh
      test_script: ./scripts/test_mqtt_interoperability.sh
      cmake_path: ./test/cmake/mqtt_interoperability
      result_affix: MQTT_Interoperability
      skip_deploy: true
  Deploy:
    permissions:
      contents: read
      issues: read
      checks: write
      pull-requests: write
      pages: write
      id-token: write
    needs: [NetXDuo, Web, MQTT, NetXDuo64, NetXDuo_Fast, Azure_IoT, Secure, Crypto, Secure_Interoperability, MQTT_Interoperability]
    uses: eclipse-threadx/threadx/.github/workflows/regression_template.yml@master
    with:
      skip_test: true
      deploy_list: "NetXDuo Web MQTT NetXDuo64 NetXDuo_Fast Azure_IoT Secure Crypto Secure_Interoperability MQTT_Interoperability"