-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from niklasdewally/build-using-minion
Minion: Use minion's build system not build.rs to build libminion, and CI tweaks
- Loading branch information
Showing
6 changed files
with
128 additions
and
80 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
[submodule "minion-bindings/vendor"] | ||
path = solvers/minion/vendor | ||
url = https://github.com/niklasdewally/minion | ||
branch = conjure-oxide-devel |
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,23 @@ | ||
#!/bin/bash | ||
|
||
SCRIPT_DIR=$(dirname "$0") | ||
|
||
git submodule init | ||
git submodule update | ||
cd "$SCRIPT_DIR" | ||
|
||
echo "------ CONFIGURE STEP ------" | ||
|
||
if [ -d vendor/build ]; then | ||
echo "vendor/build already exists; skipping" | ||
echo "if you need to reconfigure minion (such as after an update), delete this directory!" | ||
else | ||
mkdir -p vendor/build | ||
cd vendor/build | ||
python3 ../configure.py --library | ||
fi | ||
|
||
echo "------ BUILD STEP ------" | ||
cd "$SCRIPT_DIR" | ||
cd vendor/build | ||
make all |
This file was deleted.
Oops, something went wrong.