-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable directory structure reorganization #1015
Merged
Merged
Conversation
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
Also: - pass in the FrameworkTest as args, it has much relevant data - set iroot and troot variables on the FrameworkTest, so setup.py files can use args.iroot and args.troot
❤️ |
Install all extensions with php
Uses sprunge.us
…-fix-448 Conflicts: frameworks/Java/play-java/.gitignore frameworks/Java/play-java/README.md frameworks/Java/play-java/app/controllers/Application.java frameworks/Java/play-java/app/models/World.java frameworks/Java/play-java/app/utils/Predicate.java frameworks/Java/play-java/app/utils/Predicated.java frameworks/Java/play-java/app/utils/PredicatedAction.java frameworks/Java/play-java/benchmark_config frameworks/Java/play-java/build.sbt frameworks/Java/play-java/conf/application.conf frameworks/Java/play-java/conf/routes frameworks/Java/play-java/install.sh frameworks/Java/play-java/setup.py frameworks/Java/play-java/source_code frameworks/Scala/play-activate-mysql/project/build.properties frameworks/Scala/play-activate-mysql/project/plugins.sbt frameworks/Scala/play-scala/.gitignore frameworks/Scala/play-scala/README.md frameworks/Scala/play-scala/app/controllers/Application.scala frameworks/Scala/play-scala/app/models/Fortune.scala frameworks/Scala/play-scala/app/models/World.scala frameworks/Scala/play-scala/app/utils/PredicatedAction.scala frameworks/Scala/play-scala/app/views/fortune.scala.html frameworks/Scala/play-scala/app/views/main.scala.html frameworks/Scala/play-scala/benchmark_config frameworks/Scala/play-scala/build.sbt frameworks/Scala/play-scala/conf/application.conf frameworks/Scala/play-scala/conf/routes frameworks/Scala/play-scala/install.sh frameworks/Scala/play-scala/project/build.properties frameworks/Scala/play-scala/project/plugins.sbt frameworks/Scala/play-scala/setup.py frameworks/Scala/play-scala/source_code play-java/.gitignore play-java/README.md play-java/app/models/World.java play-java/app/utils/Predicate.java play-java/app/utils/Predicated.java play-java/app/utils/PredicatedAction.java play-java/build.sbt play-java/conf/application.conf play-java/conf/routes play-java/project/build.properties play-java/project/plugins.sbt play-java/source_code play-scala/.gitignore play-scala/README.md play-scala/app/models/Fortune.scala play-scala/app/models/World.scala play-scala/app/utils/PredicatedAction.scala play-scala/app/views/fortune.scala.html play-scala/app/views/main.scala.html play-scala/build.sbt play-scala/conf/application.conf play-scala/conf/routes play-scala/project/build.properties play-scala/project/plugins.sbt play-scala/source_code play2/play2-java-ebean/.gitignore play2/play2-java-ebean/README.md play2/play2-java-ebean/app/models/World.java play2/play2-java-ebean/app/utils/Predicate.java play2/play2-java-ebean/app/utils/Predicated.java play2/play2-java-ebean/app/utils/PredicatedAction.java play2/play2-java-ebean/build.sbt play2/play2-java-ebean/conf/application.conf play2/play2-java-ebean/project/build.properties play2/play2-java-ebean/project/plugins.sbt play2/play2-java-ebean/source_code play2/play2-java/conf/routes play2/play2-scala-anorm/.gitignore play2/play2-scala-anorm/README.md play2/play2-scala-anorm/app/models/Fortune.scala play2/play2-scala-anorm/app/models/World.scala play2/play2-scala-anorm/app/utils/PredicatedAction.scala play2/play2-scala-anorm/app/views/fortune.scala.html play2/play2-scala-anorm/app/views/main.scala.html play2/play2-scala-anorm/build.sbt play2/play2-scala-anorm/conf/application.conf play2/play2-scala-anorm/conf/routes play2/play2-scala-anorm/project/build.properties play2/play2-scala-anorm/project/plugins.sbt play2/play2-scala-anorm/source_code
Ok. Ungodly number of commits, but this is now proven to work! I used the most recent full travis build as my starting point of "what currently works", and then verified that against this pull request. I also:
|
Conflicts: toolset/run-ci.py
hamiltont
added a commit
that referenced
this pull request
Aug 15, 2014
Reorganize project directory structure
Spectacular! |
This was referenced Aug 17, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This allows us to move all framework directories from the root of this project to the folder
frameworks/<language>
. It still runs as expected on any framework directories still inthe project root.
As an example, I've moved
mojolicious
intoframeworks/perl/mojolicious
. I will moveothers, such as moving all the
php
tests intoframeworks/php
once I'm confident I'mnot causing pain for any open pull requests. The end result of moving everything will
be a root directory organized more like this:
This should close #448