tree: d3d1c045ad58cc6a2d42ced7e85419e2d4328acd [path history] [tgz]
  1. configure_dev_environment.ps1
  2. 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