-
Notifications
You must be signed in to change notification settings - Fork 201
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
ci: use cache for based on the go.sum for dependencies for faster GH action execution #1653
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
…om/NibiruChain/nibiru into realu/consistent-integration-suite
commit 5a0347a Author: Unique-Divine <realuniquedivine@gmail.com> Date: Sat Oct 28 16:57:44 2023 -0500 test(simapp): flag retrieval must be inside the fn commit 65d43d3 Author: Unique-Divine <realuniquedivine@gmail.com> Date: Sat Oct 28 16:43:33 2023 -0500 test: make it so that simulations don't need to be fitered for explicitly commit 932cfac Author: Unique-Divine <realuniquedivine@gmail.com> Date: Sat Oct 28 16:17:50 2023 -0500 test fix to use correct bech32 prefix commit 484e0b2 Merge: de8acbf 43e3afd Author: Unique-Divine <realuniquedivine@gmail.com> Date: Fri Oct 27 17:38:14 2023 -0500 Merge branch 'realu/consistent-integration-suite' of https://github.com/NibiruChain/nibiru into realu/consistent-integration-suite commit de8acbf Author: Unique-Divine <realuniquedivine@gmail.com> Date: Fri Oct 27 17:38:03 2023 -0500 linter commit 43e3afd Merge: 6a1a459 68d4d57 Author: Unique Divine <51418232+Unique-Divine@users.noreply.github.com> Date: Fri Oct 27 17:13:51 2023 -0500 Merge branch 'master' into realu/consistent-integration-suite commit 6a1a459 Author: Unique-Divine <realuniquedivine@gmail.com> Date: Fri Oct 27 17:03:05 2023 -0500 change log commit c2028d3 Author: Unique-Divine <realuniquedivine@gmail.com> Date: Fri Oct 27 16:57:55 2023 -0500 test: refactors cli.network suites with 'Integration' to use common function
Codecov Report
@@ Coverage Diff @@
## master #1653 +/- ##
==========================================
+ Coverage 74.25% 74.28% +0.02%
==========================================
Files 191 191
Lines 15099 15096 -3
==========================================
+ Hits 11212 11214 +2
+ Misses 3256 3251 -5
Partials 631 631
|
…om/NibiruChain/nibiru into realu/consistent-integration-suite
jgimeno
approved these changes
Nov 1, 2023
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.
Purpose
The first few minutes of each of our test-based GitHub actions go toward fetching the same dependencies more often than not.
We aren't gaining anything by fetching everything from scratch on each run. Instead, we can create a hash based on the
go.sum
and store the Golang deps to spend less time waiting on CI runs.Screenshot of the behavior prior to this change: