Skip to content

Commit

Permalink
remove unused stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK committed Feb 19, 2024
1 parent 422dcb3 commit 10356a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/docker-images/openwrt-x64-openjdk8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN mkdir -p /usr/local/bin
RUN opkg update

# packages in openwrt
RUN opkg install git-http ca-bundle curl python3 python3-pip gcc make bash sudo perl perlbase-essential
RUN opkg install git-http ca-bundle curl python3 python3-pip gcc make bash sudo perl

# packages we have to get from alpine

Expand Down Expand Up @@ -36,4 +36,6 @@ RUN ar -rc /usr/lib/libm.a
###############################################################################
# Install entrypoint
###############################################################################
RUN perl --version
ADD entrypoint.sh /usr/local/bin/builder
RUN chmod a+x /usr/local/bin/builder
ENTRYPOINT ["/usr/local/bin/builder"]
6 changes: 2 additions & 4 deletions builder/imports/awslc.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'targets': ['linux', 'android'],
'test_steps': [],
'build_tests': False,
'cmake_args': ['-DFIPS=ON', '-DBUILD_LIBSSL=OFF']
'cmake_args': ['-DDISABLE_GO=ON', '-DBUILD_LIBSSL=OFF']
}


Expand All @@ -23,7 +23,6 @@ def __init__(self, **kwargs):
library=True,
account='aws',
name='aws-lc',
imports=['golang'],
config=config,
**kwargs)

Expand Down Expand Up @@ -51,7 +50,6 @@ def __init__(self, **kwargs):
super().__init__(
account='aws',
name='aws-lc',
imports=['golang'],
**config,
**kwargs)

Expand All @@ -61,4 +59,4 @@ def cmake_args(self, env):
# Not disable PERL for old GCC to avoid the pre-compiled binary with AVX512
return super().cmake_args(env) + ['-DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON']
else:
return super().cmake_args(env)
return super().cmake_args(env)+ ['-DDISABLE_PERL=ON']

0 comments on commit 10356a2

Please sign in to comment.