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

Disable cache for install_pkgs_reproducibility_test deps #2071

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ test:remote --remote_timeout=3600
test:remote --keep_going

# Configuration specific to buildkite CI testing the default workspace
test:buildkite --action_env=PATH
test:buildkite --define=ENV_KEY=my_key # for tests/container:set_env_make_vars_test
test:buildkite --define=ENV_VALUE=my_value # for tests/container:set_env_make_vars_test
test:buildkite --action_env=PATH
test:buildkite --define=ENV_KEY=my_key # for tests/container:set_env_make_vars_test
test:buildkite --define=ENV_VALUE=my_value # for tests/container:set_env_make_vars_test
test:buildkite --test_output=errors
test:buildkite --experimental_allow_tags_propagation
2 changes: 2 additions & 0 deletions tests/docker/package_managers/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,15 @@ install_pkgs(
image_tar = "@ubuntu1604//:ubuntu1604_vanilla.tar",
installables_tar = ":download_pkg_git.tar",
output_image_name = "test_install_pkgs_duplicate",
tags = ["no-cache"],
)

install_pkgs(
name = "install_git_for_reproducibility_2",
image_tar = "@ubuntu1604//:ubuntu1604_vanilla.tar",
installables_tar = ":download_pkg_git.tar",
output_image_name = "test_install_pkgs_duplicate",
tags = ["no-cache"],
)

compare_ids_test(
Expand Down