Support Tapa HLS backend #158
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
# Copyright Allo authors. All Rights Reserved. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: "Allo Test" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
# This job runs on Linux | |
runs-on: ubuntu-latest | |
container: | |
image: chhzh123/allo:llvm-19.x-py3.12 | |
steps: | |
# https://github.com/actions/checkout/issues/363#issuecomment-1915075699 | |
- name: Install git in container | |
run: | | |
apt-get install git | |
git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
fetch-depth: 0 | |
- name: Build Allo | |
shell: bash | |
run: | | |
source activate allo | |
export LLVM_BUILD_DIR=/root/llvm-project/build | |
python3 -m pip install -v -e . | |
- name: Formatting Check | |
shell: bash | |
run: | | |
source activate allo | |
bash scripts/lint/task_lint.sh | |
- name: Testing | |
shell: bash | |
run: | | |
source activate allo | |
export PATH=/root/llvm-project/build/bin:${PATH} | |
python3 -m pytest tests -v | |
python3 -m pytest tutorials -v | |
python3 -m pytest examples/polybench -v |