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

Tweaks related to Windows DOLFINx build #830

Merged
merged 10 commits into from
Jun 3, 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
7 changes: 6 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ jobs:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
steps:
- uses: actions/checkout@v4

- name: Insert add_dll_directory calls
working-directory: python/basix
run: |
(Get-Content __init__.py).Replace('# WINDOWSDLL', 'import os; os.add_dll_directory("D:/a/basix/install/bin")') | Set-Content __init__.py
Get-Content __init__.py

- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v6
Expand All @@ -78,7 +84,6 @@ jobs:
cd python
python -m pip -v install --no-cache-dir .[ci] --config-settings=cmake.args=-DBasix_DIR=D:/a/basix/install/lib/cmake/basix
cd ../
echo "import os; os.add_dll_directory('D:/a/basix/install/bin')" | Out-File -Append -FilePath conftest.py -Encoding utf8

- name: Run units tests
run: |
Expand Down
6 changes: 1 addition & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
if (WIN32)
cmake_minimum_required(VERSION 3.21)
else()
cmake_minimum_required(VERSION 3.19)
endif()
cmake_minimum_required(VERSION 3.21)

project(BasixFull VERSION "0.9.0.0" LANGUAGES CXX)
set(BASIX_FULL_SKBUILD TRUE)
Expand Down
6 changes: 1 addition & 5 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
if (WIN32)
cmake_minimum_required(VERSION 3.21)
else()
cmake_minimum_required(VERSION 3.19)
endif()
cmake_minimum_required(VERSION 3.21)

# Set the version
project(Basix VERSION "0.9.0.0" LANGUAGES CXX)
Expand Down
4 changes: 3 additions & 1 deletion cpp/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"dependencies": [
"blas",
"lapack"
"lapack",
"vcpkg-cmake",
"vcpkg-cmake-config"
]
}
2 changes: 1 addition & 1 deletion python/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.19)
cmake_minimum_required(VERSION 3.21)

# nanobind uses aligned deallocators only present on macOS > 10.14
if(APPLE)
Expand Down
3 changes: 3 additions & 0 deletions python/basix/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
functionality can be used via this Python interface.
"""

# Template placeholder for injecting Windows dll directories in CI
# WINDOWSDLL

from basix import cell, finite_element, lattice, polynomials, quadrature, sobolev_spaces
from basix._basixcpp import __version__ # type: ignore
from basix.cell import CellType, geometry, topology
Expand Down
Loading