Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 8 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ on:
# on push, only build on wip chore/cicd branches so we can test in those
# contexts without triggering pull-requests.
- chore/cicd/*
- ogdf_submodule
pull_request:
workflow_dispatch:

jobs:
generate-wheels-matrix:
Expand All @@ -17,6 +19,8 @@ jobs:
include: ${{ steps.set-matrix.outputs.include }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install cibuildwheel
run: pipx install cibuildwheel==2.22.0
- id: set-matrix
Expand Down Expand Up @@ -50,6 +54,8 @@ jobs:
include: ${{ fromJson(needs.generate-wheels-matrix.outputs.include) }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Build wheels
uses: pypa/cibuildwheel@v2.22.0
Expand All @@ -70,6 +76,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Download all wheel artifacts
uses: actions/download-artifact@v4
Expand Down
7 changes: 7 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[submodule "ogdf"]
path = extern/ogdf
url = https://github.com/ogdf/ogdf.git
[submodule "extern/pybind11"]
path = extern/pybind11
url = https://github.com/pybind/pybind11.git
branch = stable
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ include_directories(${SOURCE_DIR})
SET(SOURCES "${SOURCE_DIR}/layout.cc" "${SOURCE_DIR}/lshforest.cc" "${SOURCE_DIR}/minhash.cc" "${SOURCE_DIR}/analyse.cc")

# Generate python module
add_subdirectory(pybind11)
add_subdirectory(extern/pybind11)

pybind11_add_module(_tmap ${SOURCES} "${SOURCE_DIR}/bindings.cc")
if(MSVC)
Expand Down
1 change: 1 addition & 0 deletions extern/ogdf
Submodule ogdf added at 8a7b22
1 change: 1 addition & 0 deletions extern/pybind11
Submodule pybind11 added at 58c382
4 changes: 0 additions & 4 deletions ogdf-conda/src/.clang-tidy

This file was deleted.

63 changes: 0 additions & 63 deletions ogdf-conda/src/CMakeLists.txt

This file was deleted.

82 changes: 0 additions & 82 deletions ogdf-conda/src/LICENSE.txt

This file was deleted.

Loading