blob: 0148a4432c275f3b0a6f82449c0e81d3d3bd603b [file] [log] [blame]
Geoffrey Martin-Noblec0745222022-11-08 17:52:49 -08001# Copyright 2022 The IREE Authors
2#
3# Licensed under the Apache License v2.0 with LLVM Exceptions.
4# See https://llvm.org/LICENSE.txt for license information.
5# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
7# When building, we make the entire repository the Docker build context so that
8# we can reuse scripts across the project, but we don't actually want to
9# transfer the entire directory (including any local files, submodules, etc) to
10# the Docker daemon. Instead we start out by ignoring everything and then add
11# back only the files we actually want to use in our Docker images.
12
13# Ignore everything
14**
15# A directory specifically for things used when building containers, but not
16# elsewhere.
17!build_tools/docker/context/**
18# Avoid duplicating dependency requirement information
19!runtime/bindings/python/iree/runtime/build_requirements.txt
Geoffrey Martin-Noble4fd7a1d2022-11-17 15:09:49 -080020!integrations/tensorflow/test/requirements.txt
21# Share Swiftshader installation script with user instructions
22!build_tools/third_party/swiftshader/build_vk_swiftshader.sh
23# Keep the Bazel version in only one place
24!.bazelversion