Skip to content
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

travis: Cache examples separately #406

Merged
merged 1 commit into from
Oct 21, 2016
Merged

travis: Cache examples separately #406

merged 1 commit into from
Oct 21, 2016

Conversation

petertseng
Copy link
Member

PR #396 gives us the power to have multiple examples. But if the
examples have different dependencies, their caches clobber each other.
Thus, it seems necessary to have a separate cache per example.

There is some discussion on this and some proposed solutions in #397.

We may replace this shell script soon, but it will at least let us know
the strategy we want to use and validate the directory layout.

@petertseng
Copy link
Member Author

  • Move the example to ./src and package.yaml to ./.
  • Create a new folder (possibly in the user's home folder) for each pair (exercise/example) and copy everything needed there before testing.

I think that the second solution is better because it would avoid any present or future problem with the global stack cache.
I made a few tests and seems that the first solution works too, but sharing exactly the same path for distinct build feels wrong...

Ah. To be clear, I have nothing against the second solution, it was just that the first was the path of least resistance currently

@@ -68,6 +68,10 @@ script:
exit 1
else
for example in examples/*/ ; do
examplename=$(basename example)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nope, needs to be $example.

PR #396 gives us the power to have multiple examples. But if the
examples have different dependencies, their caches clobber each other.
Thus, it seems necessary to have a separate cache per example.

There is some discussion on this and some proposed solutions in #397.

We may replace this shell script soon, but it will at least let us know
the strategy we want to use and validate the directory layout.
@petertseng
Copy link
Member Author

Okay, travis seems to have fine paths here.

/home/travis/.foldercache/home/travis/build/exercism/xhaskell/exercises/anagram/list-string/.stack-work/dist/x86_64-linux/Cabal-1.24.0.0/build/Anagram.dyn_hi

/home/travis/.foldercache/home/travis/build/exercism/xhaskell/exercises/anagram/list-string/.stack-work/dist/x86_64-linux/Cabal-1.24.0.0/build/Anagram.dyn_o

Unrelated, but if we would use basename $exercise we could change /home/travis/.foldercache/home/travis/build/exercism/xhaskell/exercises/anagram to /home/travis/.foldercache/anagram which would be a shorter path... but perhaps it does not matter

@rbasso
Copy link
Contributor

rbasso commented Oct 21, 2016

basename seems a nice idea.

The only thing missing now is to move the package.yaml, right?

Edit: Sorry...it's there.

@petertseng
Copy link
Member Author

Hold on, I thought the package.yaml gets moved already at https://github.com/exercism/xhaskell/blob/master/.travis.yml#L74

Or are you talking about something different?

If the package.yaml didn't get moved in the above fashion, I would be surprised that some of the examples even build...

Copy link
Contributor

@rbasso rbasso left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My bad...everything seems perfect.

@petertseng
Copy link
Member Author

OK, I'm going to create another issue for the basename thing since I might not get to it just yet.

@rbasso rbasso merged commit 822e8ac into exercism:master Oct 21, 2016
@petertseng petertseng deleted the multi-example-cache branch October 21, 2016 07:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants