File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 36
36
runs-on : ubuntu-latest
37
37
environment : ' prod'
38
38
strategy :
39
+ fail-fast : false
39
40
matrix :
40
41
cuda_version : ['cu12.8', cu12, cu11]
41
42
env :
80
81
echo $TAG
81
82
docker build . -f docker/Dockerfile -t ${TAG} --build-arg CUDA_VERSION=${CUDA_VERSION}
82
83
docker push $TAG
83
- - name : Push Docker image latest-cu12 as latest
84
+ - name : Push Docker image as latest
84
85
if : endsWith(env.TAG, 'latest-cu12') == true
85
86
run : |
86
87
export latest_TAG=${TAG_PREFIX}:latest
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ ENV DEBIAN_FRONTEND=noninteractive
21
21
ENV TZ=Etc/UTC
22
22
23
23
RUN --mount=type=cache,target=/root/.cache \
24
+ sed -i 's|http://archive.ubuntu.com|http://azure.archive.ubuntu.com|g' /etc/apt/sources.list && \
24
25
apt-get update -y && \
25
26
apt-get install -y --no-install-recommends \
26
27
tzdata wget curl openssh-server ssh sudo git-core \
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -ex
2
2
3
3
export DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC
4
+ sed -i ' s|http://archive.ubuntu.com|http://azure.archive.ubuntu.com|g' /etc/apt/sources.list
4
5
apt-get update -y
5
6
apt-get install -y --no-install-recommends \
6
7
tzdata wget curl ssh sudo git-core libibverbs1 ibverbs-providers ibverbs-utils librdmacm1 libibverbs-dev rdma-core libmlx5-1
@@ -35,7 +36,7 @@ if [[ "${CUDA_VERSION_SHORT}" = "cu118" ]]; then
35
36
FA_VERSION=2.7.3
36
37
TORCH_VERSION=" <2.7"
37
38
else
38
- FA_VERSION=2.8.2
39
+ FA_VERSION=2.8.3
39
40
TORCH_VERSION=" "
40
41
fi
41
42
You can’t perform that action at this time.
0 commit comments