forked from GreenSolver/green
-
Notifications
You must be signed in to change notification settings - Fork 47
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
Copied Files but could not get tests to run #58
Open
marcdefaria
wants to merge
56
commits into
wvisser:master
Choose a base branch
from
marcdefaria:developer_branch
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
2480682
Changed travis
6e4ed09
Uncommented broken test
e6cdce7
Fixed self made error in SAT
e6fa4ad
Fixed unforced error
413bdd7
added a hello message
429d903
trying to fix errors
7cfdaa5
trying to echo contents of file
6953d88
edited echo message
1cae1e7
Edited echo message again
5ed2d10
trying to for loop through text file
1cb7112
trying to make syntax errors go away
9a892e6
Added an equal sign to the one test case
d72e8d4
Trying to make docker image work
marcdefaria 8c5a22e
Just trying to docker build
marcdefaria 512447e
image docker
marcdefaria 804aa9f
docker image
marcdefaria b233aaa
docker attempt
marcdefaria bbd7515
reverted to original travis.yml
marcdefaria c831331
added sudo: required
marcdefaria c384c2d
added services: docker
marcdefaria 35d470a
trying to install docker
marcdefaria 39b9c38
trying to install docker-ce
marcdefaria 9a9cf71
added serices: docker
marcdefaria ad9a54f
added before_install
marcdefaria 8521129
trying to fix before_installll
marcdefaria aaea4ae
trying to set up docker again
marcdefaria 0c3df33
fixing before_script
marcdefaria d28b264
added a docker-compose.yml file
marcdefaria 724cdae
fixing docker compose
marcdefaria 8e79d82
Added after_script
marcdefaria cc1ab1c
added before_script stuff
marcdefaria 18e44f0
trying to fix before_script
marcdefaria 0322502
added docker ps
marcdefaria f5471c7
added a docker hello-world
marcdefaria d5bd7e3
added docker run -t -i ant
marcdefaria 0888c5b
added docker images
marcdefaria 9816108
added volumes to docker-compose.yml
marcdefaria 482bfd4
made a few chagnes on dockerfile
marcdefaria be88478
removed dockerfile: Dockerfile from docker-compose.yml
marcdefaria 685cc09
added 'RUN ant' to dockerfile
marcdefaria b358065
removed docker run helloworld
marcdefaria 08c33f3
Added verbose output and failing test case
6bec708
Changed dockerfile to get tests cases from my github
e36b4bf
Corrected failing test case
0dd13ee
Added build status of travis to repo
8a755ca
Corrected README.md file
6e6dde1
Added 2 new test cases to canonizer
8719fc5
Added import for first test to EntireSuite.java
marcdefaria f6abdb3
Moved test cases to service/simplify
marcdefaria b0ee022
deleted entireSuite.java
marcdefaria bfc2f9f
Added EntireSuite.java back
marcdefaria 7cf5524
Removed /canonizer
marcdefaria 23eaaa2
Added canonizer back
marcdefaria 30d444d
Added simplify folder with tests to green/src/.../service
a41f98b
Added OnlyConstantPropogationService.java
marcdefaria 5afe89a
Created the Constant Propogation tests, but still cant get tests to run
marcdefaria File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
sudo: required | ||
dist: trusty | ||
|
||
services: docker | ||
|
||
language: java | ||
|
||
script: | ||
- ant; | ||
- ant test; | ||
- docker-compose up --build -d | ||
- docker ps -a | ||
|
||
after_script: | ||
- docker-compose down |
Binary file not shown.
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
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,10 @@ | ||
version: '2' | ||
services: | ||
web: | ||
build: . | ||
ports: | ||
- "5000:5000" | ||
volumes: | ||
- .:/code | ||
redis: | ||
image: "redis:alpine" |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use docker-compose when we want to write multi-container Docker applications. You don't have to use it here and can simply build it with "docker build".