File tree 4 files changed +25
-13
lines changed
4 files changed +25
-13
lines changed Original file line number Diff line number Diff line change
1
+ name : Build all apps
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ pull_request :
6
+
7
+ jobs :
8
+
9
+ build_all_applications :
10
+ name : Build all the applications on all the devices
11
+ uses : ./.github/workflows/reusable_build_several.yml
12
+ with :
13
+ sdk : all
14
+ devices : nanox
15
+ only_apps : app-starknet app-passwords
16
+
17
+ build_all_applications_on_latest :
18
+ name : Build all the applications on all the devices on the latest SDK
19
+ uses : ./.github/workflows/reusable_build_several.yml
20
+ with :
21
+ sdk : all
22
+ sdk_reference : origin/master
23
+ exclude_apps : app-u2f app-passwords app-starknet
24
+ devices : flex stax
Original file line number Diff line number Diff line change @@ -3,12 +3,6 @@ name: E2E testing of the reusable workflows
3
3
4
4
on :
5
5
workflow_dispatch :
6
- push :
7
- branches :
8
- - master
9
- - main
10
- - develop
11
- pull_request :
12
6
13
7
# This workflow file contains the duplicates of several applications that use reusable workflows
14
8
# The duplication is unfortunate but can't be avoided as github actions do not (yet ?) accept the
Original file line number Diff line number Diff line change 69
69
if [ -n "${{ inputs.only_apps }}" ]; then
70
70
ARGS="$ARGS -o ${{ inputs.only_apps }}"
71
71
fi
72
- devices="$(python ./ledger-app-workflows/scripts/parse_all_apps.py ${ARGS})"
72
+ devices="$(python ./ledger-app-workflows/scripts/parse_all_apps.py ${ARGS} -l 4 )"
73
73
echo "apps_config=$devices" >> $GITHUB_OUTPUT
74
74
echo $devices
75
75
outputs :
Original file line number Diff line number Diff line change @@ -2,12 +2,6 @@ name: Scripts quality CI
2
2
3
3
on :
4
4
workflow_dispatch :
5
- push :
6
- branches :
7
- - master
8
- - main
9
- - develop
10
- pull_request :
11
5
12
6
jobs :
13
7
shellcheck :
You can’t perform that action at this time.
0 commit comments