mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-13 00:16:19 +03:00
Disable migration tests on macos on PRs (#9571)
We are a bit short on macos nodes and these tests run > 500s so this should hopefully make things a bit faster. Not necessarily the full solution, I think we also want to limit the versions here but this is at least a start. changelog_begin changelog_end
This commit is contained in:
parent
2e93de79a4
commit
800989145b
@ -1,7 +1,7 @@
|
||||
# Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
load("@os_info//:os_info.bzl", "is_windows")
|
||||
load("@os_info//:os_info.bzl", "is_linux", "is_windows")
|
||||
load("//bazel_tools:testing.bzl", "create_daml_app_codegen", "create_daml_app_dar", "daml_lf_compatible", "sdk_platform_test")
|
||||
load(
|
||||
"//bazel_tools/daml_script:daml_script.bzl",
|
||||
@ -132,8 +132,9 @@ migration_test(
|
||||
# Exclusive due to hardcoded postgres ports.
|
||||
tags = [
|
||||
"exclusive",
|
||||
"head-quick",
|
||||
],
|
||||
] +
|
||||
# These tests are fairly slow so on PRs we only run them on Linux
|
||||
(["head-quick"] if is_linux else []),
|
||||
versions = stable_versions,
|
||||
) if not is_windows else None
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user