File tree Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 81
81
if : inputs.target != vars.ALL
82
82
run : |
83
83
unset CSC_LINK
84
- yarn package:stage --mac ${{ inputs.target }}
84
+ target=""
85
+
86
+ if [ ${{ startsWith(inputs.target, 'macos:') }} == 'true' ]; then
87
+ inputsTarget=${{inputs.target}}
88
+ target=--${inputsTarget#macos:}
89
+ fi
90
+
91
+ yarn package:stage --mac $target
85
92
rm -rf release/mac
86
93
87
94
- name : Repack dmg to tar
Original file line number Diff line number Diff line change 47
47
fail-fast : false
48
48
matrix :
49
49
# Number of threads to run tests
50
- parallel : [0, 1, 2, 3 ]
50
+ parallel : [0, 1, 2]
51
51
52
52
steps :
53
53
- uses : actions/checkout@v4
75
75
- name : Generate short list of the test files
76
76
working-directory : ./tests/e2e
77
77
run : |
78
- testFiles=$(find tests/web -type f -name '*.e2e.ts' | sort | awk "NR % 4 == ${{ matrix.parallel }}")
78
+ testFiles=$(find tests/web -type f -name '*.e2e.ts' | sort | awk "NR % 3 == ${{ matrix.parallel }}")
79
79
echo $testFiles
80
80
81
81
# Multi-Line value
Original file line number Diff line number Diff line change 92
92
with :
93
93
short_rte_list : ${{ inputs.short_rte_list || true }}
94
94
redis_client : ${{ inputs.redis_client }}
95
- debug : ${{ inputs.debug }}
95
+ debug : ${{ inputs.debug || false }}
96
96
97
97
# E2E Approve
98
98
e2e-approve :
@@ -111,15 +111,15 @@ jobs:
111
111
needs : e2e-approve
112
112
secrets : inherit
113
113
with :
114
- debug : ${{ inputs.debug }}
114
+ debug : ${{ inputs.debug || false }}
115
115
only_docker : true
116
116
117
117
e2e-docker-tests :
118
118
needs : build-docker
119
119
uses : ./.github/workflows/tests-e2e-docker.yml
120
120
secrets : inherit
121
121
with :
122
- debug : ${{ inputs.debug }}
122
+ debug : ${{ inputs.debug || false }}
123
123
124
124
125
125
# E2E AppImage
@@ -129,11 +129,11 @@ jobs:
129
129
secrets : inherit
130
130
with :
131
131
target : linux:appimage:x64
132
- debug : ${{ inputs.debug }}
132
+ debug : ${{ inputs.debug || false }}
133
133
134
134
e2e-appimage-tests :
135
135
needs : build-appimage
136
136
uses : ./.github/workflows/tests-e2e-appimage.yml
137
137
secrets : inherit
138
138
with :
139
- debug : ${{ inputs.debug }}
139
+ debug : ${{ inputs.debug || false }}
You can’t perform that action at this time.
0 commit comments