Skip to content

Commit

Permalink
[wamr] init build.sh and Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: lum1n0us <liang.he@intel.com>
  • Loading branch information
lum1n0us committed May 21, 2024
1 parent 97a0c5a commit 0e726b7
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 1 deletion.
46 changes: 46 additions & 0 deletions projects/wamr/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
################################################################################

FROM gcr.io/oss-fuzz-base/base-builder

RUN apt-get update && apt upgrade -y

RUN apt install -y build-essential clang llvm

#
# Installation place
WORKDIR /opt

# install llvm
ARG LLVM_VER=15.0.6
RUN wget https://github.com/llvm/llvm-project/releases/download/llvmorg-${LLVM_VER}/clang+llvm-${LLVM_VER}-x86_64-linux-gnu-ubuntu-18.04.tar.xz
RUN tar -xvf clang+llvm-${LLVM_VER}-x86_64-linux-gnu-ubuntu-18.04.tar.xz \
&& mv clang+llvm-${LLVM_VER}-x86_64-linux-gnu-ubuntu-18.04 llvm-${LLVM_VER} \
&& rm clang+llvm-${LLVM_VER}-x86_64-linux-gnu-ubuntu-18.04.tar.xz

# install wasm-tools
ARG WASM_TOOLS_VER=1.205.0
RUN wget https://github.com/bytecodealliance/wasm-tools/releases/download/v${WASM_TOOLS_VER}/wasm-tools-${WASM_TOOLS_VER}-x86_64-linux.tar.gz
RUN tar -xvf wasm-tools-${WASM_TOOLS_VER}-x86_64-linux.tar.gz \
&& mv wasm-tools-${WASM_TOOLS_VER}-x86_64-linux wasm-tools \
&& rm wasm-tools-${WASM_TOOLS_VER}-x86_64-linux.tar.gz \
&& ln -s /opt/wasm-tools/wasm-tools /usr/local/bin/wasm-tools

WORKDIR $SRC
RUN git clone --depth 1 https://github.com/bytecodealliance/wasm-micro-runtime wamr

COPY build.sh $SRC/

26 changes: 26 additions & 0 deletions projects/wamr/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/bin/bash -eu
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
################################################################################

# build fuzzers
(
cd wamr/tests/fuzz/wasm-mutator-fuzz/
cmake -S . -B build \
&& cmake --build build

./smith_wasm.sh 5
./build/wasm_mutator_fuzz ./build/CORPUS_DIR
)
2 changes: 1 addition & 1 deletion projects/wamr/project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ auto_ccs:
main_repo: "https://github.com/bytecodealliance/wasm-micro-runtime.git"
sanitizers:
- address
- memory
- undefined
fuzzing_engines:
- libfuzzer
file_github_issue: true

0 comments on commit 0e726b7

Please sign in to comment.