Skip to content

Commit 6a93221

Browse files
committed
[WIP] iree submodule
1 parent e76600b commit 6a93221

File tree

7 files changed

+7
-135
lines changed

7 files changed

+7
-135
lines changed

.github/workflows/ci-linux.yml

-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ jobs:
5050
yum remove -y openssl-devel zlib-devel || true
5151
yum install -y protobuf-devel protobuf-compiler tmate
5252
53-
- name: Sync source deps
54-
run: |
55-
python ./sync_deps.py
56-
5753
- name: Python deps
5854
run: |
5955
pip install "numpy<2" pyyaml "pybind11[global]==2.10.3" nanobind

.github/workflows/ci-macos.yml

-4
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ jobs:
5757
run: |
5858
brew install ccache ninja
5959
60-
- name: Sync source deps
61-
run: |
62-
python ./sync_deps.py
63-
6460
- name: Python deps
6561
run: |
6662
pip install "numpy<2" pyyaml "pybind11[global]==2.10.3" nanobind

.github/workflows/ci-windows.yml

-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ jobs:
6565
with:
6666
python-version: '3.11'
6767

68-
- name: Sync source deps
69-
run: |
70-
python ./sync_deps.py
71-
7268
- name: Python deps
7369
run: |
7470
pip install "numpy<2" pyyaml "pybind11[global]==2.10.3" nanobind

.gitmodules

+5
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,8 @@
1818
[submodule "third_party/openssl"]
1919
path = third_party/openssl
2020
url = https://github.com/viaduck/openssl-cmake.git
21+
shallow = true
22+
[submodule "third_party/iree"]
23+
path = third_party/iree
24+
url = https://github.com/iree-org/iree.git
25+
shallow = true

build_tools/ci/build_test_cpp.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -eux -o errtrace
44

55
this_dir="$(cd $(dirname $0) && pwd)"
66
repo_root="$(cd $this_dir/../.. && pwd)"
7-
iree_dir="$(cd $repo_root/../iree && pwd)"
7+
iree_dir="$(cd $repo_root/third_party/iree && pwd)"
88
build_dir="$repo_root/iree-build"
99
install_dir="$repo_root/iree-install"
1010
mkdir -p "$build_dir"

sync_deps.py

-122
This file was deleted.

third_party/iree

Submodule iree added at 60b65f3

0 commit comments

Comments
 (0)