Skip to content

Commit

Permalink
Add lazyfs support for arm64 robustness.
Browse files Browse the repository at this point in the history
Signed-off-by: James Blair <mail@jamesblair.net>
  • Loading branch information
jmhbnz committed Aug 9, 2023
1 parent 43f10cb commit 5168890
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/robustness-template-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
test:
timeout-minutes: 210
runs-on: ${{ fromJson(inputs.runs-on) }}
container: golang:1.19-bullseye
container:
image: golang:1.19-bullseye
options: --privileged --cap-add SYS_ADMIN --device /dev/fuse
defaults:
run:
shell: bash
Expand All @@ -46,6 +48,9 @@ jobs:
set -euo pipefail
go clean -testcache
# Build LazyFS
apt update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3
make install-lazyfs
# Use --failfast to avoid overriding report generated by failed test
GO_TEST_FLAGS="-v --count ${{ inputs.count }} --timeout ${{ inputs.testTimeout }} --failfast --run TestRobustness"
case "${ETCD_BRANCH}" in
Expand Down

0 comments on commit 5168890

Please sign in to comment.