Chris Frantz | 340e623 | 2021-08-25 15:56:28 -0700 | [diff] [blame] | 1 | # Copyright lowRISC contributors. |
| 2 | # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 3 | # SPDX-License-Identifier: Apache-2.0 |
| 4 | |
| 5 | package(default_visibility = ["//visibility:public"]) |
| 6 | |
| 7 | exports_files(glob(["**"])) |
Drew Macrae | 399af40 | 2021-11-01 18:15:09 +0000 | [diff] [blame] | 8 | |
| 9 | genrule( |
| 10 | name = "ot_version_file", |
| 11 | outs = ["ot_version.txt"], |
| 12 | cmd = """awk '/BUILD_GIT_VERSION/ { print $$2 }' bazel-out/volatile-status.txt > $@""", |
| 13 | stamp = 1, # this provides volatile-status.txt |
| 14 | ) |