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.
CI: upload _install_ci instead of _build_ci
This means we shouldn't run dependencies of the current job, so we stop going through Makefile.ci. Also remove duplicated transitive deps. Probably won't work on jobs like elpi_test which expect to run in the build dir of its dependencies, but let's see how it does for the rest.
- Loading branch information
1 parent
8e6284f
commit 58cefec
Showing
3 changed files
with
20 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
#!/bin/sh | ||
|
||
for d in _build_ci stdlib/_build; do | ||
if [ -d $d ]; then | ||
find $d -type f -o -type l | sort | ||
fi | ||
done | ||
if [ -d _install_ci ]; then | ||
find _install_ci -type f -o -type l | sort | ||
fi |