Skip to content

Commit

Permalink
smoke test both - insert and select
Browse files Browse the repository at this point in the history
  • Loading branch information
akostadinov committed Dec 16, 2024
1 parent aad2e73 commit 803bfc0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/container-image-buildah.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ jobs:
podman run -d --pod-id-file=podid --name=searchd -u 14:0 "${{ steps.build-image.outputs.image-with-tag }}$1"
sleep 3
podman logs searchd
podman run --pod-id-file=podid --rm --entrypoint "/bin/env" mysql:8 -- mysql -h 127.0.0.1 -P 9306 -e "SELECT * FROM account limit 1;"
podman run --pod-id-file=podid --rm --entrypoint "/bin/env" mysql:8 -- mysql -h 127.0.0.1 -P 9306 -e "INSERT INTO backend_api_core (id, name, system_name) VALUES (1 ,'garga', 'kjdshsafd');"
podman run --pod-id-file=podid --rm --entrypoint "/bin/env" mysql:8 -- mysql -h 127.0.0.1 -P 9306 -e "SELECT * FROM backend_api_core limit 1;"
podman rm -f searchd
}
Expand Down

0 comments on commit 803bfc0

Please sign in to comment.