File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,11 @@ jobs:
51
51
PYTHON_INCLUDE=$(uv run python -c 'from sysconfig import get_paths; print(get_paths()["include"])');
52
52
PYTHON_LIB=$(uv run python -c 'import sysconfig; print(sysconfig.get_config_var("LIBDIR"))');
53
53
git clone https://github.com/LLNL/zfp
54
- cd zfp
55
- mkdir build;
56
- cd build;
57
- uv run cmake .. -DBUILD_ZFPY=ON -DBUILD_TESTING=OFF -DPYTHON_LIBRARY=$PYTHON_LIB -DPYTHON_INCLUDE_DIR=$PYTHON_INCLUDE;
58
- uv run make;
59
- cd ..;
60
- cp build/lib*/libzfp* /usr/local/lib;
61
- cd ..
54
+ mkdir zfp/build;;
55
+ uv run cmake zfp -B zfp/build -DBUILD_ZFPY=ON -DBUILD_TESTING=OFF -DPYTHON_LIBRARY=$PYTHON_LIB -DPYTHON_INCLUDE_DIR=$PYTHON_INCLUDE;
56
+ uv run make -C zfp/build;
57
+ cp zfp/build/lib*/libzfp* /usr/local/lib;
58
+ cp zfp/build/lib*/libzfp* /usr/local/lib64;
62
59
uv add "zfpy @ ./zfp"
63
60
shell : alpine.sh {0}
64
61
You can’t perform that action at this time.
0 commit comments