Merge pull request #13211 from github/mbg/identify-environment-stubs

Shared: Add stubs for `identify-environment` scripts
This commit is contained in:
Michael B. Gale
2023-06-05 10:29:06 +01:00
committed by GitHub
4 changed files with 15 additions and 4 deletions

View File

@@ -11,9 +11,15 @@ sh_binary(
srcs = ["autobuild.sh"],
)
sh_binary(
name = "identify-environment",
srcs = ["identify-environment.sh"],
)
pkg_files(
name = "scripts",
srcs = [
":identify-environment",
":autobuild",
":qltest",
],

View File

@@ -0,0 +1,5 @@
#!/bin/sh
set -eu
echo '{ "swift": { "os": { "name": "macOS" } } }'