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

Add github CI integration #27

Merged
merged 5 commits into from Dec 11, 2020
Merged

Add github CI integration #27

merged 5 commits into from Dec 11, 2020

Conversation

psibi
Copy link
Member

@psibi psibi commented Dec 11, 2020

No description provided.

@psibi psibi merged commit c4f51c0 into master Dec 11, 2020
uses: actions/cache@v1
with:
path: ~/.stack
key: ${{ runner.os }}-${{ matrix.resolver }}-${{ hashFiles('stack.yaml') }}
Copy link
Member

Choose a reason for hiding this comment

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

The cache depends on xmonad-extras.cabal as well, as adding dependencies results in more built packages.

Copy link
Member Author

Choose a reason for hiding this comment

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

We could. But I don't want to invalidate the cache because the resolver is still the same and we can use other parts of the cache.

But this current method will become inefficient if there is a huge amount of new packages newly to xmonad-extras.cabal. But I don't think that will happen (I could be wrong). So the tradeoff here is cache getting invalidated often for some changes in the cabal file vs no cache available for some of the newly packages added in the cabal file. I took the second tradeoff, but I'm happy to be convinced otherwise.

Copy link
Member

Choose a reason for hiding this comment

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

But I don't want to invalidate the cache because the resolver is still the same and we can use other parts of the cache.

This should not be an issue with the restore-keys you use. It will just use the latest available cache for the given platform and resolver.

About the tradeoffs: I think you're understanding it backwards. Whenever the cache hits, it's not replaced at the end of the build, so by having less specific cache key, it will use cache with potentially missing packages, as adding a package to xmonad-extras.cabal will hit old caches. But when the cache doesn't hit, it just uses the latest available that still matches restore-keys and then stores it at the end of job.

None of this really matters for xmonad, really, but I noticed it so I pointed it out.
(Oh and you might want to use cache@v2 which is supposed to be faster thanks to zstd compression.)

Copy link
Member Author

Choose a reason for hiding this comment

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

Ah, I see. Thanks, that does make sense. I will try to create a follow up PR unless someone beats me to it.

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.

None yet

2 participants