Skip to content

Commit

Permalink
Update CI to use PTDB 0.5.1 (#1344)
Browse files Browse the repository at this point in the history
Build a new Docker image triton-runner-base:0.0.16 with PTDB 0.5.1 and
use the image in CI workflows.

Closes #1325.
  • Loading branch information
pbchekin authored Jun 13, 2024
1 parent 078f45b commit 0c9b925
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/dockerfiles/runner-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,17 @@ RUN set -ex; \
ninja-build \
ncurses-term \
pkg-config \
wget \
\
libpng-dev libjpeg-dev libsndfile1-dev libxml2-dev libxslt1-dev \
fontconfig libfontconfig1-dev \
libpango-1.0-0 libpangoft2-1.0-0 \
\
gh \
; \
apt-get install -y --no-install-recommends --fix-missing \
libgl1 \
; \
rm -rf /var/lib/apt/lists/*

USER runner
Expand All @@ -38,7 +42,7 @@ SHELL ["/bin/bash", "-xec"]

# TODO: install only necessary components
RUN \
curl -sSLO https://registrationcenter-download.intel.com/akdlm/IRC_NAS/52723419-d344-42bf-93ca-867606409cf0/l_intel-for-pytorch-gpu-dev_p_0.5.0.49_offline.sh; \
curl -sSLO https://registrationcenter-download.intel.com/akdlm/IRC_NAS/6758ce21-bde6-47f8-b4bf-6df4301f187d/l_intel-for-pytorch-gpu-dev_p_0.5.1.40_offline.sh; \
sh l_intel-for-pytorch-gpu*.sh -a --silent --eula accept; \
rm l_intel-for-pytorch-gpu*.sh

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
integration-tests:
name: Integration tests
runs-on:
- ${{ inputs.runner_label || 'runner-0.0.15' }}
- ${{ inputs.runner_label || 'runner-0.0.16' }}
strategy:
matrix:
python: ${{ github.ref_name == 'llvm-target' && fromJson('["3.9", "3.10", "3.11"]') || fromJson('["3.9"]') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda-basekit-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on:
- glados
- spr
- runner-0.0.15
- runner-0.0.16
strategy:
matrix:
python: ${{ github.ref_name == 'llvm-target' && fromJson('["3.9", "3.10", "3.11"]') || fromJson('["3.9"]') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on:
- glados
- spr
- runner-0.0.15
- runner-0.0.16
strategy:
matrix:
python: ${{ github.ref_name == 'llvm-target' && fromJson('["3.9", "3.10", "3.11"]') || fromJson('["3.9"]') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions: read-all

env:
REGISTRY: docker-registry.docker-registry.svc.cluster.local:5000
TAG: triton-runner-base:0.0.15
TAG: triton-runner-base:0.0.16

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on:
- glados
- spr
- runner-0.0.15
- runner-0.0.16
strategy:
matrix:
python:
Expand Down

0 comments on commit 0c9b925

Please sign in to comment.