Skip to content

Commit 97332b3

Browse files
[test]
1 parent 7354427 commit 97332b3

4 files changed

+25
-13
lines changed

.github/workflows/build_all.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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

.github/workflows/end_to_end_tests_of_reusable_workflows.yml

-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@ name: E2E testing of the reusable workflows
33

44
on:
55
workflow_dispatch:
6-
push:
7-
branches:
8-
- master
9-
- main
10-
- develop
11-
pull_request:
126

137
# This workflow file contains the duplicates of several applications that use reusable workflows
148
# The duplication is unfortunate but can't be avoided as github actions do not (yet ?) accept the

.github/workflows/reusable_get_apps_metadata.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
if [ -n "${{ inputs.only_apps }}" ]; then
7070
ARGS="$ARGS -o ${{ inputs.only_apps }}"
7171
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)"
7373
echo "apps_config=$devices" >> $GITHUB_OUTPUT
7474
echo $devices
7575
outputs:

.github/workflows/scripts_checking.yml

-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ name: Scripts quality CI
22

33
on:
44
workflow_dispatch:
5-
push:
6-
branches:
7-
- master
8-
- main
9-
- develop
10-
pull_request:
115

126
jobs:
137
shellcheck:

0 commit comments

Comments
 (0)