forked from shotover/shotover-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KafkaSinkCluster: error on AllocateProducerIds (shotover#1804)
Co-authored-by: Conor <[email protected]>
- Loading branch information
Showing
2 changed files
with
19 additions
and
7 deletions.
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 |
---|---|---|
|
@@ -43,9 +43,6 @@ jobs: | |
# Otherwise only the last build to finish would get saved to the cache. | ||
# We allow different test_flags to share a cache as they should have identical build outputs | ||
key: ${{ matrix.runner }} - ${{ matrix.cargo_flags }} | ||
cache-directories: | | ||
target/debug/jassets | ||
target/release/jassets | ||
|
||
# this line means that only the main branch writes to the cache | ||
# benefits: | ||
|
@@ -65,6 +62,18 @@ jobs: | |
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected] | ||
# It is currently impossible to combine j4rs, rust-cache and nextest: | ||
# * j4rs needs to store jars somewhere, by default this is in target/debug/jassets, we do have the option to move this somewhere outside of target. | ||
# * rust-cache will delete all files in target/debug other than `build`, `deps` and `.fingerprint` | ||
# * nextest will only archive files within the target directory | ||
# There is no way of combining all of these requirements. | ||
# We will need to find one of these projects that is suitable to have its requirements loosened. | ||
# This is going to be tricky and require discussion with the various upstream projects, and will take a while to land anything. | ||
# So for now we need a quick workaround. | ||
# This workaround is to force j4rs to be rebuilt from scratch via cargo clean. | ||
# This has a cost on CI runtime and in the future we should find another solution as discussed above. | ||
- name: Workaround j4rs cache issue | ||
run: cargo clean -p j4rs | ||
- name: Build tests | ||
run: | | ||
cargo test --doc ${{ matrix.cargo_flags }} --all-features -- --show-output --nocapture | ||
|
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