tree: c7bd972ed78e450fb82042f4a5c7f391e8e90b3d [path history] [tgz]
  1. build_dist.py
  2. cmake_ci.py
  3. configure_dev_environment.ps1
  4. README.md
build_tools/github_actions/README.md

GitHub Actions Based CI

Debugging releases cookbook

Build in the same Linux container as the release

docker run --rm -it -v $(pwd):/work stellaraccident/manylinux2014_x86_64-bazel-3.7.2:latest /bin/bash

# From within docker.
export PATH=/opt/python/cp38-cp38/bin:$PATH
cd /work
python ./build_tools/cmake/cmake_ci.py -B../iree-build \
  -DCMAKE_INSTALL_PREFIX=../iree-install -DCMAKE_BUILD_TYPE=Release \
  -DIREE_BUILD_SAMPLES=OFF -DIREE_BUILD_PYTHON_BINDINGS=ON \
  -DIREE_BUILD_TENSORFLOW_COMPILER=OFF -DIREE_BUILD_TFLITE_COMPILER=OFF -DIREE_BUILD_XLA_COMPILER=OFF
python ./build_tools/cmake/cmake_ci.py --build ../iree-build