Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
469b3bc5
Unverified
Commit
469b3bc5
authored
Aug 07, 2024
by
Kevin H. Luu
Committed by
GitHub
Aug 07, 2024
Browse files
[ci] Make building wheels per commit optional (#7278)
Signed-off-by:
kevin
<
kevin@anyscale.com
>
parent
5223199e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
7 deletions
+20
-7
.buildkite/release-pipeline.yaml
.buildkite/release-pipeline.yaml
+20
-7
No files found.
.buildkite/release-pipeline.yaml
View file @
469b3bc5
steps
:
-
label
:
"
Build
wheel
-
CUDA
{{matrix.cuda_version}}
"
-
label
:
"
Build
wheel
-
CUDA
12.1
"
agents
:
queue
:
cpu_queue
commands
:
-
"
DOCKER_BUILDKIT=1
docker
build
--build-arg
max_jobs=16
--build-arg
buildkite_commit=$BUILDKITE_COMMIT
--build-arg
USE_SCCACHE=1
--build-arg
CUDA_VERSION={{matrix.cuda_version}}
--tag
vllm-ci:build-image
--target
build
--progress
plain
."
-
"
DOCKER_BUILDKIT=1
docker
build
--build-arg
max_jobs=16
--build-arg
buildkite_commit=$BUILDKITE_COMMIT
--build-arg
USE_SCCACHE=1
--build-arg
CUDA_VERSION=12.1.0
--tag
vllm-ci:build-image
--target
build
--progress
plain
."
-
"
mkdir
artifacts"
-
"
docker
run
--rm
-v
$(pwd)/artifacts:/artifacts_host
vllm-ci:build-image
bash
-c
'cp
-r
dist
/artifacts_host
&&
chmod
-R
a+rw
/artifacts_host'"
# rename the files to change linux -> manylinux1
-
"
for
f
in
artifacts/dist/*.whl;
do
mv
--
\"
$$f
\"
\"
$${f/linux/manylinux1}
\"
;
done"
-
"
aws
s3
cp
--recursive
artifacts/dist
s3://vllm-wheels/$BUILDKITE_COMMIT/"
-
"
aws
s3
cp
--recursive
artifacts/dist
s3://vllm-wheels/nightly/"
env
:
DOCKER_BUILDKIT
:
"
1"
-
block
:
"
Build
CUDA
11.8
wheel"
key
:
block-build-cu118-wheel
-
label
:
"
Build
wheel
-
CUDA
11.8"
depends_on
:
block-build-cu118-wheel
agents
:
queue
:
cpu_queue
commands
:
-
"
DOCKER_BUILDKIT=1
docker
build
--build-arg
max_jobs=16
--build-arg
buildkite_commit=$BUILDKITE_COMMIT
--build-arg
USE_SCCACHE=1
--build-arg
CUDA_VERSION=11.8.0
--tag
vllm-ci:build-image
--target
build
--progress
plain
."
-
"
mkdir
artifacts"
-
"
docker
run
--rm
-v
$(pwd)/artifacts:/artifacts_host
vllm-ci:build-image
bash
-c
'cp
-r
dist
/artifacts_host
&&
chmod
-R
a+rw
/artifacts_host'"
# rename the files to change linux -> manylinux1
...
...
@@ -12,8 +30,3 @@ steps:
-
"
aws
s3
cp
--recursive
artifacts/dist
s3://vllm-wheels/nightly/"
env
:
DOCKER_BUILDKIT
:
"
1"
matrix
:
setup
:
cuda_version
:
-
"
11.8.0"
-
"
12.1.0"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment