Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,13 +349,13 @@ jobs:

- name: setup libtorch
run: |
curl --output libtorch.zip ${{ matrix.libtorch-url }}
curl --location --output libtorch.zip ${{ matrix.libtorch-url }}
unzip -q libtorch.zip -d $CMAKE_PREFIX_PATH/
mv $CMAKE_PREFIX_PATH/libtorch/* $CMAKE_PREFIX_PATH/

- name: setup libmetatensor
run: |
curl -L -O https://github.com/metatensor/metatensor/releases/download/metatensor-core-v0.2.0/metatensor-core-cxx-0.2.0.tar.gz
curl --location -O https://github.com/metatensor/metatensor/releases/download/metatensor-core-v0.2.0/metatensor-core-cxx-0.2.0.tar.gz
tar xf metatensor-core-cxx-0.2.0.tar.gz
cmake -B build-metatensor -S metatensor-core-cxx-0.2.0 \
-DMETATENSOR_INSTALL_BOTH_STATIC_SHARED=OFF \
Expand All @@ -366,7 +366,7 @@ jobs:

- name: setup libmetatensor-torch
run: |
curl -L -O https://github.com/metatensor/metatensor/releases/download/metatensor-torch-v0.9.0/metatensor-torch-cxx-0.9.0.tar.gz
curl --location -O https://github.com/metatensor/metatensor/releases/download/metatensor-torch-v0.9.0/metatensor-torch-cxx-0.9.0.tar.gz
tar xf metatensor-torch-cxx-0.9.0.tar.gz
cmake -B build-metatensor-torch -S metatensor-torch-cxx-0.9.0 \
-DCMAKE_INSTALL_PREFIX=$CMAKE_PREFIX_PATH \
Expand Down
Loading