Skip to content

Commit

Permalink
fix(IDX): revert incorrect setupos environment variable (#2776)
Browse files Browse the repository at this point in the history
A previous [change](#2752) zealously
changed more environment variables than necessary. The
`ENV_DEPS__DEV_SETUPOS_IMG_TAR_ZST` should not point to a CAS URL but to
the image itself.
  • Loading branch information
nmattia authored Nov 22, 2024
1 parent b2a094f commit c8338e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rs/tests/system_tests.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def system_test(
icos_images["ENV_DEPS__DEV_HOSTOS_UPDATE_IMG_TEST_TAR_ZST_CAS_URL"] = _hostos + "update-img-test.tar.zst"

if uses_setupos_dev:
icos_images["ENV_DEPS__DEV_SETUPOS_IMG_TAR_ZST_CAS_URL"] = _setupos + "disk-img.tar.zst"
_env_deps["ENV_DEPS__DEV_SETUPOS_IMG_TAR_ZST"] = _setupos + "disk-img.tar.zst"

_env_deps["ENV_DEPS__SETUPOS_DISABLE_CHECKS"] = "//rs/ic_os/dev_test_tools/setupos-disable-checks"
_env_deps["ENV_DEPS__SETUPOS_INJECT_CONFIGS"] = "//rs/ic_os/dev_test_tools/setupos-inject-configuration"
Expand Down

0 comments on commit c8338e3

Please sign in to comment.