We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ed4a9 commit c4a7a59Copy full SHA for c4a7a59
1 file changed
.github/workflows/ci.yml
@@ -387,13 +387,20 @@ jobs:
387
;;
388
389
omnios)
390
- # libxxhash not available?
391
- sudo pkg install gcc13 git pkg-config python-313
+ # libxxhash not available in pkg, building from source
+ sudo pkg install gcc13 git pkg-config gnu-make python-313
392
sudo ln -sf /usr/bin/python3.13 /usr/bin/python3
393
sudo ln -sf /usr/bin/python3.13-config /usr/bin/python3-config
394
sudo python3 -m ensurepip
395
sudo python3 -m pip install virtualenv
396
397
+ # install libxxhash from source
398
+ git clone --depth 1 https://github.com/Cyan4973/xxHash.git
399
+ cd xxHash
400
+ sudo gmake install
401
+ cd ..
402
+ export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:${PKG_CONFIG_PATH:-}"
403
+
404
python3 -m venv .venv
405
. .venv/bin/activate
406
python -V
0 commit comments