Skip to content

Commit

Permalink
[bugfix] convertor: turbo error when vsize != 64
Browse files Browse the repository at this point in the history
Signed-off-by: zhuangbowei.zbw <[email protected]>
  • Loading branch information
WaberZhuang committed Oct 23, 2024
1 parent 0c2f057 commit f505ad2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ jobs:
# TODO(fuweid): remove the env GO111MODULE=off in new version of go
- name: install dependencies
shell: bash
env:
GO111MODULE: off
run: |
echo "::group:: install dependencies"
go get -u -v github.com/vbatts/git-validation
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci-userspace-convertor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ jobs:
/opt/overlaybd/snapshotter/convertor -r localhost:5000/redis -i 7.2.3 --overlaybd 7.2.3_overlaybd --turboOCI 7.2.3_turbo
bash run_container.sh localhost:5000/redis:7.2.3_overlaybd
bash run_container.sh localhost:5000/redis:7.2.3_turbo
/opt/overlaybd/snapshotter/convertor -r localhost:5000/redis -i 7.2.3 --overlaybd 7.2.3_overlaybd_256 --turboOCI 7.2.3_turbo_256 --vsize 256
bash run_container.sh localhost:5000/redis:7.2.3_overlaybd_256
bash run_container.sh localhost:5000/redis:7.2.3_turbo_256
- name: CI - uconv E2E with digest input
working-directory: ci/scripts
Expand Down
3 changes: 3 additions & 0 deletions ci/scripts/run_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
#
# rpull and run on-demand

set -x

image=$1
container_name=${2:-test}

Expand All @@ -11,6 +13,7 @@ exit_code=0
if ! ctr run -d --net-host --snapshotter=overlaybd "${image}" "${container_name}"; then
exit_code=1
fi
lsblk
if ! ctr t ls | grep "${container_name}"; then
exit_code=1
fi
Expand Down

0 comments on commit f505ad2

Please sign in to comment.