Skip to content

Commit

Permalink
Fix squid builds and CI failures.
Browse files Browse the repository at this point in the history
Signed-off-by: Utkarsh Bhatt <[email protected]>
  • Loading branch information
UtkarshBhatthere committed Jun 26, 2024
1 parent 224a724 commit 9d78fbe
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,11 @@ jobs:
output=$(sudo microceph log get-level)
if [[ "$output" != "3" ]] ; then echo "incorrect log level: $output"; exit 1; fi
- name: Print logs for failure
if: failure()
run: |
sudo snap logs microceph -n 1000
multi-node-tests:
name: Multi node testing
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -334,6 +339,11 @@ jobs:
- name: Test client configurations
run: ~/actionutils.sh check_client_configs

- name: Print logs for failure
if: failure()
run: |
sudo snap logs microceph -n 1000
multi-node-tests-with-custom-microceph-ip:
name: Multi node testing with custom microceph IP
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -386,6 +396,11 @@ jobs:
~/actionutils.sh headexec wait_for_osds 3
lxc exec node-wrk0 -- sh -c "microceph.ceph -s"
- name: Print logs for failure
if: failure()
run: |
sudo snap logs microceph -n 1000
loop-file-tests:
name: Test with loopback file OSDs
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -434,6 +449,11 @@ jobs:
~/actionutils.sh wait_for_osds 3
sudo microceph.ceph -s
- name: Print logs for failure
if: failure()
run: |
sudo snap logs microceph -n 1000
wal-db-tests:
name: Test WAL/DB device usage
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -495,6 +515,11 @@ jobs:
- name: Exercise RGW
run: ~/actionutils.sh testrgw

- name: Print logs for failure
if: failure()
run: |
sudo snap logs microceph -n 1000
upgrade-quincy-tests:
name: Test quincy upgrades
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -556,3 +581,8 @@ jobs:

- name: Exercise RGW again
run: ~/actionutils.sh headexec testrgw

- name: Print logs for failure
if: failure()
run: |
sudo snap logs microceph -n 1000
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ parts:
- lib/*/libboost_filesystem.so*
- lib/*/libboost_iostreams.so*
- lib/*/libboost_program_options.so*
- lib/*/libboost_python312.so*
- lib/*/libboost_python310.so*
- lib/*/libboost_thread.so*
- lib/*/libcephfs.so*
- lib/*/libcephsqlite.so*
Expand All @@ -211,7 +211,7 @@ parts:
- lib/*/libpmem.so*
- lib/*/libpmemobj.so*
- lib/*/libpsl.so*
- lib/*/libpython3.12.so*
- lib/*/libpython3.10.so*
- lib/*/librabbitmq.so*
- lib/*/librados.so*
- lib/*/libradosgw.so*
Expand Down

0 comments on commit 9d78fbe

Please sign in to comment.