forked from coq/coq
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split the ci-elpi_hb makefile in two.
This would wreak havoc with the overlay files, and elpi is sensitive enough as a plugin for this to be extremely annoying.
- Loading branch information
Showing
3 changed files
with
29 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
ci_dir="$(dirname "$0")" | ||
. "${ci_dir}/ci-common.sh" | ||
|
||
git_download elpi | ||
|
||
if [ "$DOWNLOAD_ONLY" ]; then exit 0; fi | ||
|
||
( cd "${CI_BUILD_DIR}/elpi" | ||
make build-core | ||
make build-apps | ||
make install | ||
) |
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