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 68830ec commit 8a3754dCopy full SHA for 8a3754d
.github/workflows/pypi.yaml
@@ -39,7 +39,14 @@ jobs:
39
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
40
manylinux: ${{ matrix.platform.manylinux }}
41
before-script-linux: |
42
- yum install -y unzip
+ if command -v yum &> /dev/null; then
43
+ yum install -y unzip
44
+ elif command -v apt-get &> /dev/null; then
45
+ apt-get update && apt-get install -y unzip
46
+ else
47
+ echo "No supported package manager found."
48
+ exit 1
49
+ fi
50
curl -L -O https://github.com/duckdb/duckdb/releases/download/v1.2.0/libduckdb-linux-${{ matrix.platform.duckdb-slug }}.zip
51
unzip libduckdb-linux-${{ matrix.platform.duckdb-slug }}.zip -d /opt/duckdb
52
export DUCKDB_LIB_DIR=/opt/duckdb
0 commit comments