Commit 10356a2 1 parent 422dcb3 commit 10356a2 Copy full SHA for 10356a2
File tree 2 files changed +6
-6
lines changed
.github/docker-images/openwrt-x64-openjdk8
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ RUN mkdir -p /usr/local/bin
7
7
RUN opkg update
8
8
9
9
# packages in openwrt
10
- RUN opkg install git-http ca-bundle curl python3 python3-pip gcc make bash sudo perl perlbase-essential
10
+ RUN opkg install git-http ca-bundle curl python3 python3-pip gcc make bash sudo perl
11
11
12
12
# packages we have to get from alpine
13
13
@@ -36,4 +36,6 @@ RUN ar -rc /usr/lib/libm.a
36
36
# ##############################################################################
37
37
# Install entrypoint
38
38
# ##############################################################################
39
- RUN perl --version
39
+ ADD entrypoint.sh /usr/local/bin/builder
40
+ RUN chmod a+x /usr/local/bin/builder
41
+ ENTRYPOINT ["/usr/local/bin/builder" ]
Original file line number Diff line number Diff line change 11
11
'targets' : ['linux' , 'android' ],
12
12
'test_steps' : [],
13
13
'build_tests' : False ,
14
- 'cmake_args' : ['-DFIPS =ON' , '-DBUILD_LIBSSL=OFF' ]
14
+ 'cmake_args' : ['-DDISABLE_GO =ON' , '-DBUILD_LIBSSL=OFF' ]
15
15
}
16
16
17
17
@@ -23,7 +23,6 @@ def __init__(self, **kwargs):
23
23
library = True ,
24
24
account = 'aws' ,
25
25
name = 'aws-lc' ,
26
- imports = ['golang' ],
27
26
config = config ,
28
27
** kwargs )
29
28
@@ -51,7 +50,6 @@ def __init__(self, **kwargs):
51
50
super ().__init__ (
52
51
account = 'aws' ,
53
52
name = 'aws-lc' ,
54
- imports = ['golang' ],
55
53
** config ,
56
54
** kwargs )
57
55
@@ -61,4 +59,4 @@ def cmake_args(self, env):
61
59
# Not disable PERL for old GCC to avoid the pre-compiled binary with AVX512
62
60
return super ().cmake_args (env ) + ['-DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON' ]
63
61
else :
64
- return super ().cmake_args (env )
62
+ return super ().cmake_args (env )+ [ '-DDISABLE_PERL=ON' ]
You can’t perform that action at this time.
0 commit comments