Preparing for 0.6.1 release #1858
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DiskANN Push Build | |
on: [push] | |
jobs: | |
common: | |
strategy: | |
fail-fast: true | |
name: DiskANN Common Build Checks | |
uses: ./.github/workflows/common.yml | |
build-documentation: | |
strategy: | |
fail-fast: true | |
name: DiskANN Build Documentation | |
uses: ./.github/workflows/build-python-pdoc.yml | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-2019, windows-latest ] | |
name: Build for ${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout repository | |
if: ${{ runner.os == 'Linux' }} | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Checkout repository | |
if: ${{ runner.os == 'Windows' }} | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
submodules: true | |
- name: Build dispannpy dependency tree | |
run: | | |
pip install diskannpy pipdeptree | |
echo "dependencies" > dependencies_${{ matrix.os }}.txt | |
pipdeptree >> dependencies_${{ matrix.os }}.txt | |
- name: Archive dispannpy dependencies artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dependencies | |
path: | | |
dependencies_${{ matrix.os }}.txt | |
- name: DiskANN Build CLI Applications | |
uses: ./.github/actions/build | |
# python: | |
# name: DiskANN Build Python Wheel | |
# uses: ./.github/workflows/build-python.yml |