-
Notifications
You must be signed in to change notification settings - Fork 16
46 lines (46 loc) · 1.23 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Windows is currently not supported
# name: Build Python client for Windows
# on:
# push:
# branches:
# - main
# - 'release-*'
# paths:
# - '.github/workflows/windows.yml'
# - 'apis/python/**'
# - 'ci/*.bat'
# - 'ci/gha-win-env.yml'
# - 'libtiledbvcf/**'
# pull_request:
# paths:
# - '.github/workflows/windows.yml'
# - 'apis/python/**'
# - 'ci/*.bat'
# - 'ci/gha-win-env.yml'
# - 'libtiledbvcf/**'
# workflow_dispatch:
# defaults:
# run:
# shell: cmd /C CALL {0}
# jobs:
# build:
# runs-on: windows-2022
# steps:
# - uses: actions/checkout@v4
# - name: Install conda env
# uses: mamba-org/setup-micromamba@v1
# with:
# environment-file: ci/gha-win-env.yml
# cache-environment: true
# init-shell: cmd.exe
# condarc: |
# channels:
# - conda-forge
# - tiledb
# channel_priority: strict
# - name: Install libtiledbvcf python
# run: pip install --verbose .
# - name: tiledbvcf-py version
# run: python -c "import tiledbvcf; print(tiledbvcf.version)"
# - name: Test
# run: pytest apis\python\tests