mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-25 13:00:04 +00:00
fbf047cc8b
* Roll external/re2/ 24d460a9d..974f44c8d (4 commits)24d460a9db...974f44c8d4
$ git log 24d460a9d..974f44c8d --date=short --no-merges --format='%ad %ae %s' 2023-11-07 junyer Bazel fails if the username is unknown. 2023-11-07 junyer A non-root user can't futz with `/usr/local/bin`. 2023-11-07 junyer Specify the UID, not the username. 2023-11-07 junyer Don't run as root within the container. Created with: roll-dep external/re2 * Roll external/spirv-headers/ 88bc5e321..38f39dae5 (1 commit)88bc5e321c...38f39dae5b
$ git log 88bc5e321..38f39dae5 --date=short --no-merges --format='%ad %ae %s' 2023-11-08 115671160+spencer-lunarg Fix SPV_KHR_workgroup_memory_explicit_layout implicit declare (#388) Created with: roll-dep external/spirv-headers --------- Co-authored-by: GitHub Actions[bot] <>
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'abseil_revision': '79ca5d7aad63973c83a4962a66ab07cd623131ea',
|
|
|
|
'effcee_revision': '19b4aa87af25cb4ee779a071409732f34bfc305c',
|
|
|
|
'googletest_revision': 'b10fad38c4026a29ea6561ab15fc4818170d1c10',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '974f44c8d45242e710dc0a85a4defffdb3ce07fc',
|
|
'spirv_headers_revision': '38f39dae5baaa24431b24ac659054ebe972fa1e6',
|
|
}
|
|
|
|
deps = {
|
|
'external/abseil_cpp':
|
|
Var('github') + '/abseil/abseil-cpp.git@' + Var('abseil_revision'),
|
|
|
|
'external/effcee':
|
|
Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
|
|
|
|
'external/googletest':
|
|
Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
|
|
|
|
'external/protobuf':
|
|
Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),
|
|
|
|
'external/re2':
|
|
Var('github') + '/google/re2.git@' + Var('re2_revision'),
|
|
|
|
'external/spirv-headers':
|
|
Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
|
|
Var('spirv_headers_revision'),
|
|
}
|
|
|