forked from typetools/checker-framework
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'checker-framework-3.39.0-eisop1' of https://github.com/eis…
…op/checker-framework into checker-framework-3.39.0-eisop1
- Loading branch information
Showing
955 changed files
with
24,457 additions
and
14,892 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,2 +1,18 @@ | ||
This works: | ||
|
||
"packageRules": [ | ||
{ | ||
"matchPackageNames": ["com.amazonaws:aws-java-sdk-bom"], | ||
"schedule": ["before 3am on the first day of the month"] | ||
} | ||
] | ||
|
||
=========================================================================== | ||
|
||
This schedule doesn't work: Renovate accepts it but updates the dependency every day. | ||
"schedule": ["on the last day of the month"], | ||
"schedule": ["on the last day of the month"] | ||
This schedule doesn't work: Renovate accepts it but updates the dependency every day. | ||
"schedule": ["* 23 28 * *"] | ||
Or, more likely, the problems were with | ||
"matchPackageNames": ["aws-java-sdk-bom"], | ||
which I used for both of the above. |
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 |
---|---|---|
|
@@ -78,7 +78,7 @@ before_script: | |
# The fcntl line works around a bug where Travis truncates logs and fails. | ||
script: | ||
- python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)" | ||
- REMOTE_ORIGIN_URL=`git config --get remote.origin.url` | ||
- REMOTE_ORIGIN_URL=$(git config --get remote.origin.url) | ||
- echo "THIS_REPO=${THIS_REPO}" | ||
- echo "JDKVER=${JDKVER}" | ||
- echo "GROUP=${GROUP}" | ||
|
@@ -97,16 +97,16 @@ script: | |
echo "Using docker image: " $DOCKERIMAGE && | ||
docker run -v $HOME/.gradle:/root/.gradle -v $HOME/.m2:/root/.m2 $DOCKERIMAGE /bin/bash -c "true && | ||
if [ $TRAVIS_EVENT_TYPE = pull_request ] ; then | ||
git clone --quiet $REMOTE_ORIGIN_URL $THIS_REPO || git clone --quiet $REMOTE_ORIGIN_URL $THIS_REPO | ||
git clone --quiet $REMOTE_ORIGIN_URL $THIS_REPO || (sleep 1m && git clone --quiet $REMOTE_ORIGIN_URL $THIS_REPO) | ||
cd $THIS_REPO | ||
git fetch origin +refs/pull/$TRAVIS_PULL_REQUEST/merge | ||
git checkout -qf $TRAVIS_PULL_REQUEST_SHA | ||
git config user.email [email protected] | ||
git config user.name Noone Cares | ||
git remote add theupstream https://github.com/$TRAVIS_REPO_SLUG.git | ||
git pull theupstream $TRAVIS_BRANCH || git pull theupstream $TRAVIS_BRANCH | ||
git pull theupstream $TRAVIS_BRANCH || (sleep 1m && git pull theupstream $TRAVIS_BRANCH) | ||
else | ||
git clone --quiet -b $TRAVIS_BRANCH $REMOTE_ORIGIN_URL $THIS_REPO || git clone --quiet -b $TRAVIS_BRANCH $REMOTE_ORIGIN_URL $THIS_REPO | ||
git clone --quiet -b $TRAVIS_BRANCH $REMOTE_ORIGIN_URL $THIS_REPO || (sleep 1m && git clone --quiet -b $TRAVIS_BRANCH $REMOTE_ORIGIN_URL $THIS_REPO) | ||
cd $THIS_REPO | ||
git checkout -qf $TRAVIS_COMMIT | ||
fi && | ||
|
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,11 +1,11 @@ | ||
# The Checker Framework: pluggable type-checking for Java | ||
# The EISOP Checker Framework: pluggable type-checking for Java | ||
|
||
Please see the Checker Framework manual | ||
Please see the EISOP Checker Framework manual | ||
([HTML](https://eisop.github.io/cf/manual/), | ||
[PDF](https://eisop.github.io/cf/manual/checker-framework-manual.pdf)). | ||
|
||
The history of releases and changes is in file | ||
[docs/CHANGELOG.md](docs/CHANGELOG.md). | ||
|
||
Documentation for Checker Framework developers | ||
is in directory `docs/developer/`. | ||
is in directory [docs/developer/](docs/developer/). |
Oops, something went wrong.