File tree Expand file tree Collapse file tree 2 files changed +19
-6
lines changed Expand file tree Collapse file tree 2 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 11
11
test :
12
12
runs-on : ubuntu-latest
13
13
container :
14
- image : nvcr.io/nvidia/tritonserver:24.10 -py3
14
+ image : nvcr.io/nvidia/tritonserver:25.06 -py3
15
15
volumes :
16
16
- ${{ github.workspace }}:/core
17
17
# Mount /usr so we can free space
@@ -32,10 +32,23 @@ jobs:
32
32
33
33
- name : Install dependencies
34
34
run : |
35
- apt update
36
- apt install -y --no-install-recommends clang-format-15 cmake libb64-dev rapidjson-dev libre2-dev
37
- 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 && rm /tmp/boost.tar.gz
38
- pip install build pytest pytest-asyncio
35
+ apt update -qq && \
36
+ apt install -y --no-install-recommends \
37
+ clang-format-15 \
38
+ libb64-dev \
39
+ libre2-dev \
40
+ rapidjson-dev
41
+ - run : |
42
+ pip install \
43
+ cmake \
44
+ build \
45
+ pytest \
46
+ pytest-asyncio
47
+ - run : |
48
+ wget -O /tmp/boost.tar.gz https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz && \
49
+ tar xzf boost.tar.gz -C /tmp && \
50
+ mv /tmp/boost_1_80_0/boost /usr/include/boost && \
51
+ rm /tmp/boost.tar.gz
39
52
40
53
- name : Build
41
54
run : |
Original file line number Diff line number Diff line change 31
31
32
32
jobs :
33
33
pre-commit :
34
- runs-on : ubuntu-22 .04
34
+ runs-on : ubuntu-24 .04
35
35
steps :
36
36
- uses : actions/checkout@v3
37
37
- uses : actions/setup-python@v3
You can’t perform that action at this time.
0 commit comments