File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build and run functional tests of Ledger owned applications
2
+
3
+ # This workflow will build Ledger owned applications and then run functional tests on them
4
+
5
+ on :
6
+ workflow_dispatch :
7
+ inputs :
8
+ golden_run :
9
+ type : choice
10
+ required : true
11
+ default : ' Raise an error (default)'
12
+ description : CI behavior if the test snaphots are different than expected.
13
+ options :
14
+ - ' Raise an error (default)'
15
+ - ' Open a PR'
16
+ push :
17
+ branches :
18
+ - master
19
+ - main
20
+ - develop
21
+ pull_request :
22
+
23
+ jobs :
24
+ ethereum :
25
+ name : Ethereum
26
+ uses : LedgerHQ/app-ethereum/.github/workflows/reusable_build_and_functional_tests.yml@fbe/reusable_entry_point_for_CI
27
+ with :
28
+ regenerate_snapshots : ${{ inputs.golden_run == 'Open a PR' }}
29
+
30
+ bitcoin :
31
+ name : Bitcoin
32
+ uses : LedgerHQ/app-bitcoin-new/.github/workflows/reusable_build_and_functional_tests.yml@fbe/reusable_entry_point_for_CI
33
+ with :
34
+ regenerate_snapshots : ${{ inputs.golden_run == 'Open a PR' }}
35
+
36
+ exchange :
37
+ name : Exchange
38
+ uses : LedgerHQ/app-exchange/.github/workflows/reusable_build_and_functional_tests.yml@develop
39
+ with :
40
+ regenerate_snapshots : ${{ inputs.golden_run == 'Open a PR' }}
You can’t perform that action at this time.
0 commit comments