1# Copyright (c) 2020 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14 15FROM ubuntu:18.04 16WORKDIR /home/openharmony 17 18RUN sed -i "s@http://.*archive.ubuntu.com@http://repo.huaweicloud.com@g" /etc/apt/sources.list \ 19 && sed -i "s@http://.*security.ubuntu.com@http://repo.huaweicloud.com@g" /etc/apt/sources.list \ 20 && apt-get update -y \ 21 && apt-get install -y apt-utils binutils bison flex bc build-essential make mtd-utils gcc-arm-linux-gnueabi u-boot-tools python3.8 python3-pip git zip unzip curl wget gcc g++ ruby=1:2.5.1 dosfstools mtools default-jre default-jdk scons python3.8-distutils perl openssl libssl-dev cpio git-lfs m4 ccache zlib1g-dev tar rsync liblz4-tool genext2fs binutils-dev device-tree-compiler e2fsprogs git-core gnupg gnutls-bin gperf lib32ncurses5-dev libffi-dev zlib* libelf-dev libx11-dev libgl1-mesa-dev lib32z1-dev xsltproc x11proto-core-dev libc6-dev-i386 libxml2-dev lib32z-dev libdwarf-dev \ 22 && apt-get install -y grsync xxd libglib2.0-dev libpixman-1-dev kmod jfsutils reiserfsprogs xfsprogs squashfs-tools pcmciautils quota ppp libtinfo-dev libtinfo5 libncurses5 libncurses5-dev libncursesw5 libstdc++6 python2.7 gcc-arm-none-eabi \ 23 && apt-get install -y vim ssh locales \ 24 && apt-get install -y doxygen \ 25 && locale-gen "en_US.UTF-8" \ 26 && rm -rf /bin/sh /usr/bin/python /usr/bin/python3 /usr/bin/python3m \ 27 && ln -s /bin/bash /bin/sh \ 28 && ln -s /usr/bin/python3.8 /usr/bin/python3 \ 29 && ln -s /usr/bin/python3.8 /usr/bin/python3m \ 30 && ln -s /usr/bin/python3.8 /usr/bin/python \ 31 && curl https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 > /usr/bin/repo \ 32 && chmod +x /usr/bin/repo \ 33 && pip3 install --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple requests setuptools pymongo kconfiglib pycryptodome ecdsa ohos-build pyyaml prompt_toolkit==1.0.14 redis json2html yagmail python-jenkins \ 34 && pip3 install esdk-obs-python --trusted-host pypi.org \ 35 && pip3 install six --upgrade --ignore-installed six \ 36 && mkdir -p /home/tools \ 37 && mkdir -p /home/tools/gn \ 38 && wget -P /home/tools https://repo.huaweicloud.com/openharmony/compiler/clang/12.0.1-530132/linux/clang-530132-linux-x86_64.tar.bz2 \ 39 && wget -P /home/tools https://repo.huaweicloud.com/harmonyos/compiler/hc-gen/0.65/linux/hc-gen-0.65-linux.tar \ 40 && wget -P /home/tools https://repo.huaweicloud.com/harmonyos/compiler/gcc_riscv32/7.3.0/linux/gcc_riscv32-linux-7.3.0.tar.gz \ 41 && wget -P /home/tools https://repo.huaweicloud.com/harmonyos/compiler/ninja/1.9.0/linux/ninja.1.9.0.tar \ 42 && wget -P /home/tools https://repo.huaweicloud.com/harmonyos/compiler/gn/1717/linux/gn-linux-x86-1717.tar.gz \ 43 && wget -P /home/tools https://mirrors.huaweicloud.com/nodejs/v14.15.4/node-v14.15.4-linux-x64.tar.xz \ 44 && wget -P /home/tools https://hm-verify.obs.cn-north-4.myhuaweicloud.com/qemu-5.2.0.tar.xz \ 45 && tar -jxvf /home/tools/clang-530132-linux-x86_64.tar.bz2 -C /home/tools \ 46 && mv /home/tools/clang-530132 /home/tools/llvm \ 47 && tar -xvf /home/tools/hc-gen-0.65-linux.tar -C /home/tools \ 48 && tar -xvf /home/tools/gcc_riscv32-linux-7.3.0.tar.gz -C /home/tools \ 49 && tar -xvf /home/tools/ninja.1.9.0.tar -C /home/tools \ 50 && tar -xvf /home/tools/gn-linux-x86-1717.tar.gz -C /home/tools/gn \ 51 && tar -xJf /home/tools/node-v14.15.4-linux-x64.tar.xz -C /home/tools \ 52 && cp /home/tools/node-v14.15.4-linux-x64/bin/node /usr/local/bin \ 53 && ln -s /home/tools/node-v14.15.4-linux-x64/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/npm \ 54 && ln -s /home/tools/node-v14.15.4-linux-x64/lib/node_modules/npm/bin/npx-cli.js /usr/local/bin/npx \ 55 && tar -xJf /home/tools/qemu-5.2.0.tar.xz -C /home/tools \ 56 && sed -i '$aexport PATH=/home/tools/llvm/bin:$PATH' /root/.bashrc \ 57 && sed -i '$aexport PATH=/home/tools/hc-gen:$PATH' /root/.bashrc \ 58 && sed -i '$aexport PATH=/home/tools/gcc_riscv32/bin:$PATH' /root/.bashrc \ 59 && sed -i '$aexport PATH=/home/tools/ninja:$PATH' /root/.bashrc \ 60 && sed -i '$aexport PATH=/home/tools/node-v14.15.4-linux-x64/bin:$PATH' /root/.bashrc \ 61 && sed -i '$aexport PATH=/home/tools/gn:$PATH' /root/.bashrc \ 62 && sed -i '$aexport PATH=/root/.local/bin:$PATH' /root/.bashrc \ 63 && export PATH=/home/tools/llvm/bin:$PATH \ 64 && export PATH=/home/tools/hc-gen:$PATH \ 65 && export PATH=/home/tools/gcc_riscv32/bin:$PATH \ 66 && export PATH=/home/tools/ninja:$PATH \ 67 && export PATH=/home/tools/node-v12.20.0-linux-x64/bin:$PATH \ 68 && export PATH=/home/tools/gn:$PATH \ 69 && export PATH=/root/.local/bin:$PATH \ 70 && cd /home/tools/qemu-5.2.0 \ 71 && mkdir build \ 72 && cd build \ 73 && ../configure --target-list=arm-softmmu \ 74 && make -j \ 75 && make install \ 76 && cd /home/openharmony \ 77 && rm -rf /home/tools/*.tar \ 78 && rm -rf /home/tools/*.gz \ 79 && rm -rf /home/tools/*.xz \ 80 && rm -rf /home/tools/qemu-5.2.0 \ 81 && npm install -g @ohos/hpm-cli --registry https://mirrors.huaweicloud.com/repository/npm/ 82 83ENV LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 84