-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change reworks Gateway-ST's CI so that it's easier to develop locally and be more productive. 1. It adds dependencies installation as a "one-click" operation a. Similarly, it allows installing helpful Git hooks (this change adds an installable pre-commit hook that runs verification) 2. It moves directly-called linting/testing from Jenkinsfile to Makefile a. New make targets are called from Jenkinsfile New make targets (e.g., verify) can be called to aid local development (sometimes it's useful to test/reproduce locally). Integration tests have not yet been moved. They will be moved in the next changes. Obsolete targets will also be purged in the next changes. Change-Id: Icc77fd6159db5bd74be536e53bd5cd62656e44a0
- Loading branch information
Showing
3 changed files
with
174 additions
and
95 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
# We need to unset GIT_INDEX_FILE because tools like check-mod-tidy will fail. | ||
# See https://www.mail-archive.com/[email protected]/msg178292.html | ||
env -u GIT_INDEX_FILE make verify |