2019-04-08 07:14:02 +03:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you 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.
|
|
|
|
|
2018-07-09 07:51:36 +03:00
|
|
|
# CI docker i386 env
|
2019-03-13 00:34:34 +03:00
|
|
|
# tag: v0.50
|
2018-07-09 07:51:36 +03:00
|
|
|
|
2017-08-10 04:08:23 +03:00
|
|
|
FROM ioft/i386-ubuntu:16.04
|
2017-05-25 05:06:32 +03:00
|
|
|
|
2017-07-05 08:27:48 +03:00
|
|
|
RUN apt-get update --fix-missing
|
2017-05-25 05:06:32 +03:00
|
|
|
|
2017-07-04 04:01:42 +03:00
|
|
|
COPY install/ubuntu_install_core.sh /install/ubuntu_install_core.sh
|
2017-05-25 05:06:32 +03:00
|
|
|
RUN bash /install/ubuntu_install_core.sh
|
2017-07-04 04:01:42 +03:00
|
|
|
|
2017-07-14 04:44:33 +03:00
|
|
|
COPY install/ubuntu_install_llvm.sh /install/ubuntu_install_llvm.sh
|
|
|
|
RUN bash /install/ubuntu_install_llvm.sh
|
|
|
|
|
2017-07-04 04:01:42 +03:00
|
|
|
COPY install/ubuntu_install_python.sh /install/ubuntu_install_python.sh
|
2017-05-25 05:06:32 +03:00
|
|
|
RUN bash /install/ubuntu_install_python.sh
|
2017-07-04 04:01:42 +03:00
|
|
|
|
2017-07-14 04:44:33 +03:00
|
|
|
COPY install/ubuntu_install_python_package.sh /install/ubuntu_install_python_package.sh
|
|
|
|
RUN bash /install/ubuntu_install_python_package.sh
|
2018-07-08 07:34:03 +03:00
|
|
|
|
|
|
|
# AutoTVM deps
|
|
|
|
COPY install/ubuntu_install_redis.sh /install/ubuntu_install_redis.sh
|
|
|
|
RUN bash /install/ubuntu_install_redis.sh
|
2019-08-07 18:53:41 +03:00
|
|
|
|
|
|
|
# Chisel deps for TSIM
|
|
|
|
COPY install/ubuntu_install_chisel.sh /install/ubuntu_install_chisel.sh
|
|
|
|
RUN bash /install/ubuntu_install_chisel.sh
|