support remove in graph datacell #1217
This file contains hidden or 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: Check Compatibility | |
on: | |
push: | |
branches: [ "main", "0.*" ] | |
pull_request: | |
branches: [ "main", "0.*" ] | |
jobs: | |
compatibility: | |
name: Check Compatibility | |
runs-on: ubuntu-latest | |
concurrency: | |
group: compatibility-${{ github.event.pull_request.number }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
container: | |
image: vsaglib/vsag:ci-x86 | |
steps: | |
- name: Prepare Data | |
run: | | |
git clone -b old_version_index https://github.com/antgroup/vsag.git | |
cp -r ./vsag/* /tmp/ | |
- uses: actions/checkout@v4 | |
- name: Compile Check Compatibility Tools | |
run: export CMAKE_GENERATOR="Ninja"; make release | |
- name: Run Check Compatibility | |
run: bash ./scripts/check_compatibility.sh |