[ci] Add GitHub actions for runtime tests #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Builds | |
permissions: | |
contents: read | |
actions: write | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
jobs: | |
build-compiler: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install minimum required cmake and ninja | |
uses: lukka/get-cmake@latest | |
with: | |
cmakeVersion: "~3.21.0" | |
- name: Install CCache | |
uses: Chocobo1/setup-ccache-action@v1 | |
with: | |
ccache_options: | | |
max_size=400M | |
compiler_check=none | |
- name: Install Compiler | |
run: | | |
sudo apt-get update | |
sudo apt-get install lld clang | |
- name: Configure | |
run: | | |
cmake -G Ninja -Bquidditch-compiler-build \ | |
-DCMAKE_BUILD_TYPE=Release \ | |
-DCMAKE_C_COMPILER=clang \ | |
-DCMAKE_CXX_COMPILER=clang++ \ | |
-DCMAKE_C_COMPILER_LAUNCHER=ccache \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
-DIREE_ENABLE_ASSERTIONS=ON \ | |
-DIREE_ENABLE_LLD=ON \ | |
-DIREE_ENABLE_THIN_ARCHIVES=ON \ | |
-DIREE_HAL_DRIVER_DEFAULTS=OFF \ | |
-DIREE_TARGET_BACKEND_DEFAULTS=OFF \ | |
-DIREE_TARGET_BACKEND_LLVM_CPU=ON \ | |
-DPython3_ROOT_DIR="$pythonLocation" \ | |
-DPython3_FIND_STRATEGY=LOCATION \ | |
-S ${{github.workspace}}/codegen | |
- name: Build | |
run: cmake --build quidditch-compiler-build --target iree-compile | |
# TODO: Test? | |
- name: Remove object files prior to upload | |
working-directory: ${{github.workspace}}/quidditch-compiler-build | |
run: | | |
find . -name "*.o" -type f -delete | |
- name: Tar build directory | |
run: | | |
tar -cvf quidditch-compiler-build.tar ${{github.workspace}}/quidditch-compiler-build | |
- name: Upload iree-compile | |
uses: actions/upload-artifact@v4 | |
with: | |
name: quidditch-compiler-build-dir | |
path: quidditch-compiler-build.tar | |
build-runtime: | |
runs-on: ubuntu-22.04 | |
needs: [ build-compiler ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Download Pulp Toolchain | |
run: | | |
mkdir ./toolchain | |
wget -qO- https://github.com/pulp-platform/llvm-project/releases/download/0.12.0/riscv32-pulp-llvm-ubuntu2004-0.12.0.tar.gz \ | |
| tar --strip-components=1 -xzv -C ./toolchain | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install Python dependencies | |
run: python -m pip install -r runtime/requirements.txt | |
- name: Install minimum required cmake and ninja | |
uses: lukka/get-cmake@latest | |
with: | |
cmakeVersion: "~3.21.0" | |
- name: Install bender | |
uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: bender | |
version: '~0.28.0' | |
- name: Download iree-compile | |
uses: actions/download-artifact@v4 | |
with: | |
name: quidditch-compiler-build-dir | |
path: quidditch-compiler-build.tar | |
- name: Untar iree-compile | |
run: | | |
tar -xzf quidditch-compiler-build.tar | |
- name: Configure build | |
run: | | |
cmake -GNinja -Bquidditch-runtime-build \ | |
-DQUIDDITCH_CODEGEN_BUILD_DIR=${{github.workspace}}/quidditch-compiler-build \ | |
-DPULP_TOOLCHAIN_ROOT=${{github.workspace}}/toolchain \ | |
-S ${{github.workspace}}/runtime | |
- name: Build | |
run: cmake --build quidditch-runtime-build | |
# TODO: Test |