Skip to content

Commit 64cdc8e

Browse files
committed
Merge branch 'main' into gpu-ci
2 parents 5df95d2 + b87b736 commit 64cdc8e

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/packaging/pre_build_cpu.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ set -euxo pipefail
44
# Builds vLLM
55
# This script builds vLLM and places its wheel into dist/.
66

7-
VLLM_BRANCH="v0.10.0"
7+
# Script runs relative to forge root
8+
CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
9+
echo "current dir is $CURRENT_DIR"
10+
VERSIONS_FILE="$CURRENT_DIR/../../assets/versions.sh"
11+
echo "versions file is $VERSIONS_FILE"
12+
source "$VERSIONS_FILE"
13+
814
BUILD_DIR="$HOME/forge-build"
915

1016
# Push other files to the dist folder

.github/packaging/pre_build_gpu.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ set -euxo pipefail
44
# Builds Monarch
55
# This script builds Monarch and places its wheel into dist/.
66

7-
MONARCH_COMMIT="265034a29ec3fb35919f4a9c23c65f2f4237190d"
7+
# Script runs relative to forge root
8+
CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
9+
echo "current dir is $CURRENT_DIR"
10+
VERSIONS_FILE="$CURRENT_DIR/../../assets/versions.sh"
11+
echo "versions file is $VERSIONS_FILE"
12+
source "$VERSIONS_FILE"
13+
814
BUILD_DIR="$HOME/forge-build"
915

1016
# Push other files to the dist folder

0 commit comments

Comments
 (0)