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

Update push-test.yml #591

Merged
merged 4 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/disk-pq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- name: upload data and bin
uses: actions/upload-artifact@v4
with:
name: disk-pq
name: disk-pq-${{matrix.os}}
path: |
./dist/**
./data/**
2 changes: 1 addition & 1 deletion .github/workflows/dynamic-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: upload data and bin
uses: actions/upload-artifact@v4
with:
name: dynamic
name: dynamic-labels-${{matrix.os}}
path: |
./dist/**
./data/**
2 changes: 1 addition & 1 deletion .github/workflows/dynamic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: upload data and bin
uses: actions/upload-artifact@v4
with:
name: dynamic
name: dynamic-${{matrix.os}}
path: |
./dist/**
./data/**
2 changes: 1 addition & 1 deletion .github/workflows/in-mem-no-pq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: upload data and bin
uses: actions/upload-artifact@v4
with:
name: in-memory-no-pq
name: in-memory-no-pq-${{matrix.os}}
path: |
./dist/**
./data/**
2 changes: 1 addition & 1 deletion .github/workflows/in-mem-pq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: upload data and bin
uses: actions/upload-artifact@v4
with:
name: in-memory-pq
name: in-memory-pq-${{matrix.os}}
path: |
./dist/**
./data/**
2 changes: 1 addition & 1 deletion .github/workflows/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- name: upload data and bin
uses: actions/upload-artifact@v4
with:
name: labels
name: labels-${{matrix.os}}
path: |
./dist/**
./data/**
2 changes: 1 addition & 1 deletion .github/workflows/multi-sector-disk-pq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: upload data and bin
uses: actions/upload-artifact@v4
with:
name: multi-sector-disk-pq
name: multi-sector-disk-pq-${{matrix.os}}
path: |
./dist/**
./data/**
2 changes: 1 addition & 1 deletion .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- name: Upload Metrics Logs
uses: actions/upload-artifact@v4
with:
name: metrics
name: metrics-${{matrix.os}}
path: |
./metrics/**
9 changes: 3 additions & 6 deletions .github/workflows/push-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,16 @@ jobs:
with:
fetch-depth: 1
submodules: true
- name: Build dispannpy dependency tree
- name: Build diskannpy dependency tree
run: |
pip install diskannpy pipdeptree
echo "dependencies" > dependencies_${{ matrix.os }}.txt
pipdeptree >> dependencies_${{ matrix.os }}.txt
- name: Archive dispannpy dependencies artifact
- name: Archive diskannpy dependencies artifact
uses: actions/upload-artifact@v4
with:
name: dependencies
name: dependencies_${{ matrix.os }}
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
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ test-command = "python -m unittest discover {project}/python/tests"

[tool.cibuildwheel.linux]
before-build = [
"rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux",
"dnf makecache --refresh",
"dnf upgrade -y almalinux-release",
"dnf install -y epel-release",
Expand Down
Loading