File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,9 @@ jobs:
203
203
SHA : ${{ github.event_name == 'repository_dispatch' && github.event.client_payload.sha || needs.check.outputs.sha }}
204
204
TAG : ${{ github.event_name == 'repository_dispatch' && github.event.client_payload.tag || needs.check.outputs.tag }}
205
205
PLUGINS_EXTRA : false
206
- run : bash build_far2l.sh
206
+ run : |
207
+ export ARCH=$(uname -m)
208
+ bash build_far2l.sh
207
209
208
210
- name : Build AppImage
209
211
env :
Original file line number Diff line number Diff line change 12
12
if [[ " $WXGUI " == " false" ]]; then
13
13
CMAKE_OPTS+=( " -DUSEWX=no" )
14
14
fi
15
+ if [[ " $ARCH " != " x86_64" ]]; then
16
+ CMAKE_OPTS+=( " -DARCLITE=no" )
17
+ fi
15
18
if [[ " $PLUGINS_EXTRA " == " true" ]]; then
16
19
( cd $REPO_DIR /far2l
17
20
for plug in netcfgplugin sqlplugin processes ; do
@@ -23,7 +26,7 @@ if [[ "$PLUGINS_EXTRA" == "true" ]]; then
23
26
done )
24
27
fi
25
28
if [[ " $PLUGINS " == " false" ]]; then
26
- CMAKE_OPTS+=( " -DCOLORER=no -DNETROCKS=no -DALIGN=no -DAUTOWRAP=no -DCALC=no \
29
+ CMAKE_OPTS+=( " -DARCLITE=no - DCOLORER=no -DNETROCKS=no -DALIGN=no -DAUTOWRAP=no -DCALC=no \
27
30
-DCOMPARE=no -DDRAWLINE=no -DEDITCASE=no -DEDITORCOMP=no -DFILECASE=no \
28
31
-DINCSRCH=no -DINSIDE=no -DMULTIARC=no -DSIMPLEINDENT=no -DTMPPANEL=no" )
29
32
fi
You can’t perform that action at this time.
0 commit comments