Skip to content

Commit

Permalink
update for newer version of prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
nlopezgi committed Nov 13, 2024
1 parent d3650f9 commit e2e92a4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions buck2/cpp/.buckconfig
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
digest_algorithms = SHA256

[buck2_re_client]
engine_address = <CLUSTER_NAME>.cluster.engflow.com
action_cache_address = <CLUSTER_NAME>.cluster.engflow.com
cas_address = <CLUSTER_NAME>.cluster.engflow.com
http_headers = x-engflow-auth-method:jwt-v0,x-engflow-auth-token:LONG_JWT_STRING
engine_address = glass.cluster.engflow.com
action_cache_address = glass.cluster.engflow.com
cas_address = glass.cluster.engflow.com
http_headers = x-engflow-auth-method:jwt-v0,x-engflow-auth-token:eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImZhNTI2ZWUwLWNiNGQtNTljMy1iNzg1LTdjOTE0M2NlYWE4NiJ9.eyJpc3MiOiJFbmdGbG93IEluYy4iLCJpYXQiOjE3MzEwODEzOTYsImV4cCI6MTc0Njg5MjU5NiwiZW5nZmxvdy52ZXJzaW9uIjoxLCJlbmdmbG93LnNlc3Npb24ubmFtZSI6Im5pY29sYXNAZW5nZmxvdy5jb20iLCJlbmdmbG93LnNlc3Npb24ucm9sZXMiOlsiYWRtaW4iXSwiZW5nZmxvdy5zZXNzaW9uLnJvbGUiOiJhZG1pbiIsInByaW5jaXBhbCI6Im5pY29sYXNAZW5nZmxvdy5jb20ifQ.jy4eGx383ZfKHPJH0wOEYhFaojBhTqHtQtPh1xVWh4yWzGKebT89TvEl2ksxOWRnvtv2Numy5I_3mz_lVV2YyWfELI_Q8tzBGuq_qjhcgKsDCPFlcGXnMID_fWl1D6b3tHy5w7at5ZBaybXcChrrjsBrnLgjaHz2eTx1Iw5ELd3VOIFCGnl-CSQLpa6CTXFyqH2K0cnweHKhYdILgCHFO9YcOI7oTVeeZmrsaJGBuHLyMs9y2HoP0GNr4oVE43k2W0zIb1OVbcCwAoHmhOT9V1hI2zQmFaz9z2nT0qMYNrjQYeN-fa_FVEjYQdKZ6uSjxxXhu0-9H4lSu4DxTExKwxGLxSsw3RG4wJzDmvIwUPMzWbULwWX2AuF2Tgfd_YfabvzKodZvLmOUQih5c9UgKLzH1TFOoRom92PyhENScX1hR7UfnLr1zkFz1nOw3QNYuZZn5pdq3W8QUt9qDnjmJUpb872Hq_KYqOCNRy_HGO95oZbjkFXUwPkRpQaATQ_KnGfZreq659mKg7R-a8nIr8_xNIN55NAr3XITwCO8iwUcqxoyRoNmiM3c8j7s-8NfXsrxNMMzi8Q6hk2r4ZLAA3pBmrJzDxQwU1EUpVYGgv6QxNaANobL8lB0xrpvZGCgz9EUTSUy5CG4TWp_lYCp_r2ZOwOO7rTF5HEHN8N2u9w

[build]
execution_platforms = root//platforms:remote_platform
Expand Down
7 changes: 7 additions & 0 deletions buck2/cpp/toolchains/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
load("@prelude//toolchains:python.bzl", "system_python_bootstrap_toolchain")
load("@prelude//toolchains:cxx.bzl", "cxx_tools_info_toolchain")
load("@prelude//toolchains:remote_test_execution.bzl", "remote_test_execution_toolchain")
load("@prelude//tests:test_toolchain.bzl", "noop_test_toolchain")
load("tools.bzl", "path_clang_tools")

# We use the default system python toolchain in this example, focusing only on configuring the cpp toolchain.
Expand Down Expand Up @@ -53,3 +54,9 @@ remote_test_execution_toolchain(
}
},
)

# In some cases the execution of test can fail looking for this `noop_test_toolchain`.
noop_test_toolchain(
name = "test",
visibility = ["PUBLIC"],
)

0 comments on commit e2e92a4

Please sign in to comment.