Skip to content

Commit cdc47da

Browse files
committed
Build and upload wheel.
1 parent 655c8bc commit cdc47da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ runs:
5858
fi
5959
6060
echo "ARTIFACT_NAME=${{ inputs.platform }}-${{ inputs.build-type }}-${{ inputs.client-repo }}-python${{ inputs.python-version }}-${{ inputs.target-device }}${BUILD_MODE_STR}${WITH_TESTS_STR}-${{ github.sha }}" >> $GITHUB_ENV
61-
echo "ARTIFACTS_DIR=$(realpath "$(pwd)/../artifacts")" >> $GITHUB_ENV
61+
echo "ARTIFACTS_DIR=$(realpath "$(pwd)/dist")" >> $GITHUB_ENV
6262
echo "USE_CUDA=${{ (inputs.target-device == 'cpu' && 'OFF') || 'ON' }}" >> $GITHUB_ENV
6363
echo "UPLOAD_ENABLED=${{ (inputs.upload-enabled == 'true' && 'ON') || 'OFF' }}" >> $GITHUB_ENV
6464
echo "LEGATE_CORE_BUILD_MODE=${BUILD_MODE}" >> $GITHUB_ENV

continuous_integration/scripts/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build_ci() {
88
export CUDA_HOME="${CONDA_PREFIX}/targets/x86_64-linux"
99
export PARALLEL_LEVEL=$(nproc --ignore 1)
1010

11-
python setup.py build_ext --inplace
11+
python setup.py bdist_wheel
1212
}
1313

1414
build_project() {

0 commit comments

Comments
 (0)