Skip to content

Commit 256b2eb

Browse files
authored
ci: fix package test workflow (#357)
* added `httpx==0.27.2` into requirements.txt to fix `TypeError: AsyncClient.__init__() got an unexpected keyword argument ‘proxies’` https://community.openai.com/t/typeerror-asyncclient-init-got-an-unexpected-keyword-argument-proxies/1040287/5 * build cuda 11.8 devel image with gcc 11
1 parent 5da2fe7 commit 256b2eb

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/publish_devel_image.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
cuda: ["11.8", "12.1", "12.4", "12.6"]
24+
cuda: ["12.1", "12.4", "12.6"]
25+
gcc: ["12"]
26+
include: # build cuda 11.8 with gcc 11
27+
- cuda: "11.8"
28+
gcc: "11"
2529
runs-on: [self-hosted, linux, build]
2630
steps:
2731
- name: Checkout repository
@@ -53,7 +57,7 @@ jobs:
5357
build-args: |
5458
UBUNTU_VERSION=22.04
5559
CUDA_VERSION=${{ matrix.cuda }}
56-
GCC_VERSION=12
60+
GCC_VERSION=${{ matrix.gcc }}
5761
tags: |
5862
vectorchai/scalellm_devel:cuda${{ matrix.cuda }}-ubuntu22.04
5963
vectorchai/scalellm_devel:cuda${{ matrix.cuda }}

requirements-test.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ anyio==4.4.0
88
openai==1.37.0
99
six==1.16.0
1010
transformers==4.43.3
11-
accelerate==0.33.0
11+
accelerate==0.33.0
12+
httpx==0.27.2

0 commit comments

Comments
 (0)