From 2e4313aeba18bb350f77bcbe22bc0fe14b5d8c03 Mon Sep 17 00:00:00 2001 From: Googler Date: Wed, 12 Apr 2023 05:18:56 -0700 Subject: [PATCH] Automated rollback of commit 06e9dcf4b7134da951bfff85beebb2c09252092b. *** Reason for rollback *** Breaking tap/blaze. Example failure: [] *** Original change description *** Sort action lists to make diffing easier. *** PiperOrigin-RevId: 523671424 Change-Id: I475ff02bf8efd3c56e489e2de3ba2c3a5639c32e --- cc/cc_toolchain_config_lib.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cc/cc_toolchain_config_lib.bzl b/cc/cc_toolchain_config_lib.bzl index 5bf7af3..72645f7 100644 --- a/cc/cc_toolchain_config_lib.bzl +++ b/cc/cc_toolchain_config_lib.bzl @@ -186,7 +186,7 @@ def env_set(actions, env_entries = [], with_features = []): _check_same_type(env_entries, [], "env_entries", "env_set") _check_same_type(with_features, [], "with_features", "env_set") return EnvSetInfo( - actions = sorted(actions), + actions = actions, env_entries = env_entries, with_features = with_features, type_name = "env_set", @@ -348,7 +348,7 @@ def flag_set( _check_same_type(with_features, [], "with_features", "flag_set") _check_same_type(flag_groups, [], "flag_groups", "flag_set") return FlagSetInfo( - actions = sorted(actions), + actions = actions, with_features = with_features, flag_groups = flag_groups, type_name = "flag_set",