-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3423591
commit 0266303
Showing
3 changed files
with
59 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Build And Test | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
types: [synchronize, opened, reopened, ready_for_review] | ||
|
||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: nvcr.io/nvidia/tritonserver:24.10-py3 | ||
volumes: | ||
- ${{ github.workspace }}:/core | ||
|
||
steps: | ||
# Based on https://stackoverflow.com/q/75536771 | ||
- name: Free disk space | ||
run: | | ||
sudo docker system prune -a -f | ||
sudo rm -rf \ | ||
/usr/share/dotnet "$AGENT_TOOLSDIRECTORY" /usr/local/lib/android /opt/ghc \ | ||
/usr/local/share/powershell /usr/share/swift /usr/local/.ghcup \ | ||
/usr/lib/jvm | ||
sudo apt-get purge microsoft-edge-stable || true | ||
sudo apt-get purge google-cloud-cli || true | ||
sudo apt-get purge dotnet-sdk-* || true | ||
sudo apt-get purge google-chrome-stable || true | ||
sudo apt-get autoremove -y | ||
sudo apt-get autoclean -y | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: | | ||
apt update | ||
apt install -y --no-install-recommends clang-format-15 cmake libb64-dev rapidjson-dev libre2-dev | ||
wget -O /tmp/boost.tar.gz https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz && (cd /tmp && tar xzf boost.tar.gz) && mv /tmp/boost_1_80_0/boost /usr/include/boost | ||
pip install build pytest | ||
- name: Build | ||
run: | | ||
mkdir -p /core/build | ||
cd /core/build | ||
cmake -DCMAKE_INSTALL_PREFIX:PATH=`pwd`/install -DTRITON_CORE_HEADERS_ONLY=OFF .. | ||
export TRITON_PYBIND="_c/triton_bindings.cpython-310-x86_64-linux-gnu.so" | ||
make -j8 | ||
- name: Run tests with pytest | ||
run: | | ||
cd /core | ||
python3 -m pip install --force-reinstall build/python/generic/wheel/dist/tritonserver-*.whl | ||
pytest python/test -v |
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
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