Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7cd8afa

Browse files
committedSep 15, 2023
Apply the pull requests
This is step three of three to verify the solution to: buildbarn/bb-remote-execution#115
1 parent d820c7a commit 7cd8afa

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed
 

‎bare/config/runner.jsonnet

+9
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,13 @@ local common = import 'common.libsonnet';
88
listenPaths: ['worker/runner'],
99
authenticationPolicy: { allow: {} },
1010
}],
11+
inputRootMounts: [{
12+
mountpoint: 'proc',
13+
source: '/proc',
14+
filesystemType: 'proc',
15+
}, {
16+
mountpoint: 'sys',
17+
source: '/sys',
18+
filesystemType: 'sysfs',
19+
}],
1120
}

‎docker-compose/config/runner-ubuntu22-04.jsonnet

+9
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,13 @@ local common = import 'common.libsonnet';
88
listenPaths: ['/worker/runner'],
99
authenticationPolicy: { allow: {} },
1010
}],
11+
inputRootMounts: [{
12+
mountpoint: 'proc',
13+
source: '/proc',
14+
filesystemType: 'proc',
15+
}, {
16+
mountpoint: 'sys',
17+
source: '/sys',
18+
filesystemType: 'sysfs',
19+
}],
1120
}

‎go_dependencies.bzl

+8-4
Original file line numberDiff line numberDiff line change
@@ -227,14 +227,17 @@ def go_dependencies():
227227
go_repository(
228228
name = "com_github_buildbarn_bb_remote_execution",
229229
importpath = "github.com/buildbarn/bb-remote-execution",
230-
sum = "h1:BKoGfhCfn5IA4JRLMB7I4yHsM06fLvOc/zwzSxEuNrY=",
231-
version = "v0.0.0-20230905173453-70efb72857b0",
230+
remote = "https://github.com/stagnation/bb-remote-execution",
231+
vcs = "git",
232+
commit = "5dd227a7b4f40c60a1e3dbff72deb91420bcc1f3",
232233
)
234+
233235
go_repository(
234236
name = "com_github_buildbarn_bb_storage",
235237
importpath = "github.com/buildbarn/bb-storage",
236-
sum = "h1:z9yMGmzNNjhC2KnxYGfP8bPk1/l3jpd3+rb+1YkhQg4=",
237-
version = "v0.0.0-20230905110346-c04246b462b6",
238+
remote = "https://github.com/stagnation/bb-storage",
239+
vcs = "git",
240+
commit = "4269bbca62e52239dcb4a977efb4685f01d7230b",
238241
)
239242
go_repository(
240243
name = "com_github_buildbarn_go_xdr",
@@ -1863,6 +1866,7 @@ def go_dependencies():
18631866
name = "org_golang_x_sys",
18641867
importpath = "golang.org/x/sys",
18651868
sum = "h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o=",
1869+
patches = ["@com_github_buildbarn_bb_storage//:patches/org_golang_x_sys/unix_add_Fsconfig_syscall_on_linux.patch"],
18661870
version = "v0.12.0",
18671871
)
18681872
go_repository(

0 commit comments

Comments
 (0)
Please sign in to comment.