-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add conda package The packaging is done without vcpkg, the dependencies are provided by conda itself. - Add cmake preset to build conda packages without toolchain - Add github action to build conda package - Improve CMakeLists.txt * Add arm64 triplet for macos-14
- Loading branch information
1 parent
ff85c57
commit 1aca565
Showing
6 changed files
with
87 additions
and
14 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# Set-up the shell to behave more like a general-purpose programming language | ||
set -euo pipefail | ||
|
||
# Configure project | ||
cmake --fresh --preset ninja-multi | ||
|
||
# Build | ||
cmake --build --preset ninja-release --target khiopsdriver_file_gcs | ||
|
||
# Copy binary to conda package | ||
mkdir -p $PREFIX/bin | ||
cp ./builds/ninja-multi/Release/libkhiopsdriver_file_gcs.so "$PREFIX/bin/" | ||
|
||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package: | ||
name: khiops-driver-gcs | ||
version: 0.0.1 | ||
|
||
source: | ||
path: ../ | ||
|
||
build: | ||
number: 0 | ||
requirements: | ||
build: | ||
- cmake | ||
- ninja | ||
- {{ compiler('cxx') }} | ||
host: | ||
- google-cloud-cpp | ||
- spdlog | ||
run: | ||
- google-cloud-cpp | ||
- spdlog | ||
|
||
outputs: | ||
- name: khiops-driver-gcs | ||
# test: | ||
# commands: | ||
# - MODL -v | ||
# - MODL_Coclustering -v | ||
|
||
about: | ||
home: https://khiops.org | ||
license: BSD+3-clause | ||
summary: Khiops driver to access files on Google Cloud Storage | ||
doc_url: https://khiops.org | ||
dev_url: https://github.com/khiopsml/khiops |