Skip to content

Commit

Permalink
Merge pull request etcd-io#16392 from jmhbnz/add-lazyfs-arm64-support
Browse files Browse the repository at this point in the history
Add lazyfs support for arm64 robustness workflow
  • Loading branch information
ahrtr authored Aug 10, 2023
2 parents 43f10cb + 34c71d3 commit 196b1f5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/robustness-template-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ jobs:
test:
timeout-minutes: 210
runs-on: ${{ fromJson(inputs.runs-on) }}
container: golang:1.19-bullseye
container:
image: golang:1.19-bullseye
# Required for mounting fuse lazyfs
options: --privileged
defaults:
run:
shell: bash
Expand All @@ -46,6 +49,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 196b1f5

Please sign in to comment.