Skip to content

Commit

Permalink
download-artifact bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ssheorey committed Mar 25, 2024
1 parent ce7fe3d commit 8ed4176
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
PATH=/usr/local/var/homebrew/linked/ccache/libexec:$PATH
ccache -s
./util/run_ci.sh
DEVEL_PKG_NAME="$(basename package/open3d-devel-*.tar.xz)"
DEVEL_PKG_NAME="$(basename build/package/open3d-devel-*.tar.xz)"
echo "DEVEL_PKG_NAME=$DEVEL_PKG_NAME" >> $GITHUB_ENV
- name: Build Open3D viewer app
if: ${{ env.BUILD_SHARED_LIBS == 'OFF' }}
Expand Down Expand Up @@ -259,10 +259,9 @@ jobs:

- name: Download wheels
uses: actions/download-artifact@v4
# See https://github.com/dawidd6/action-download-artifact for more
# flexible artifact download options
with:
name: open3d_macosx_x86_64_wheels
pattern: open3d-*macosx*.whl
merge-multiple: true

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ubuntu-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ jobs:
- name: Download wheels
uses: actions/download-artifact@v4
with:
name: open3d_linux_x86_64_wheels
pattern: open3d*-manylinux*.whl
merge-multiple: true
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: Get-PSDrive

- name: Setup Windows SDK
uses: GuillaumeFalourd/setup-windows10-sdk-action@v1.11
uses: GuillaumeFalourd/setup-windows10-sdk-action@v2
with:
sdk-version: 19041

Expand Down Expand Up @@ -364,10 +364,8 @@ jobs:

- name: Download wheels
uses: actions/download-artifact@v4
# See https://github.com/dawidd6/action-download-artifact for more
# flexible artifact download options
with:
name: open3d_win_amd64_wheels
pattern: open3d-*win*.whl

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
8 changes: 4 additions & 4 deletions docker/docker_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ cuda_wheel_build() {
popd
if [ ! -z ${CI+x} ] ; then # Is CI env var set?
echo "[cuda_wheel_build()] Remove build cache to recover disk space..."
du -hs $PWD
df -h $PWD
docker builder prune --all --force
du -hs $PWD
df -h $PWD
fi

python_package_dir=/root/Open3D/build/lib/python_package
Expand Down Expand Up @@ -260,9 +260,9 @@ ci_build() {
popd
if [ ! -z ${CI+x} ] ; then # Is CI env var set?
echo "[ci_build()] Remove build cache to recover disk space..."
du -hs $PWD
df -h $PWD
docker builder prune --all --force
du -hs $PWD
df -h $PWD
fi

docker run -v "${PWD}:/opt/mount" --rm "${DOCKER_TAG}" \
Expand Down

0 comments on commit 8ed4176

Please sign in to comment.