Skip to content

Commit 3392389

Browse files
committed
Build GDAL in vcpkg instead of grabbing a prebuilt wheel
1 parent 0cfe870 commit 3392389

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build Python Zip
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
python-wheels:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v2
17+
- name: Setup Python
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: '3.12.9'
21+
- name: Build Python zip
22+
run: python3 get_deps.py
23+
- name: Upload zip
24+
uses: actions/upload-artifact@v4
25+
with:
26+
name: python_zip
27+
path: |
28+
./*.zip

0 commit comments

Comments
 (0)