Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI on Release 0.26 series #634

Merged
merged 3 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 4 additions & 3 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,30 +17,31 @@ stages:
strategy:
matrix:
linux:
imageName: 'ubuntu-20.04'
imageName: 'ubuntu-22.04'
python.version: '3.x'
CXX: g++
BUILD_PYTHON_API: ON
BUILD_SPARK_API: ON
DOWNLOAD_TILEDB_PREBUILT: ON
ARTIFACT_NAME: linux
linux_tiledb_source_build:
imageName: 'ubuntu-20.04'
imageName: 'ubuntu-22.04'
python.version: '3.x'
CXX: g++
BUILD_PYTHON_API: OFF
BUILD_SPARK_API: OFF
DOWNLOAD_TILEDB_PREBUILT: OFF
ARTIFACT_NAME: linux_tiledb_source_build
macos:
imageName: 'macOS-11'
imageName: 'macOS-12'
python.version: '3.7'
CXX: clang++
BUILD_PYTHON_API: ON
BUILD_SPARK_API: ON
DOWNLOAD_TILEDB_PREBUILT: ON
#SDKROOT: '/Applications/Xcode_10.3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk'
ARTIFACT_NAME: macos
MACOSX_DEPLOYMENT_TARGET: '11'
pool:
vmImage: $(imageName)
steps:
Expand Down
1 change: 0 additions & 1 deletion apis/python/conda-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ dependencies:
- pip:
- pytest-runner==5.1
- pytest==5.1.2
- tiledb
- zipp<3.16
2 changes: 2 additions & 0 deletions ci/azure-linux_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ steps:
pushd apis/python
micromamba create -f conda-env.yml -y
micromamba activate tiledbvcf-py
pip debug --verbose
pip install -vvv tiledb

# Install and test the Python API
python setup.py install --user
Expand Down
Loading