Includes prior-session patches (carry forward so the app compiles): - crates/gpui/build.rs: cross-compile manifest fix - crates/gpui/src/platform.rs: PlatformWindow::activate_with_token trait method - crates/gpui/src/window.rs: Window::activate_with_token public API - crates/gpui_linux/src/linux/wayland/window.rs: WaylandWindow::activate_with_token + activate() keyboard-serial fix Plus the focus-serial fix: - serial.rs: SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; latest_serial_of() Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
31 lines
660 B
Bash
Executable File
31 lines
660 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
source script/lib/deploy-helpers.sh
|
|
|
|
if [[ $# != 1 ]]; then
|
|
echo "Usage: $0 <production|staging>"
|
|
exit 1
|
|
fi
|
|
|
|
environment=$1
|
|
url="$(url_for_environment $environment)"
|
|
tag="$(tag_for_environment $environment)"
|
|
|
|
target_zed_kube_cluster
|
|
|
|
deployed_image_id=$(
|
|
kubectl \
|
|
--namespace=${environment} \
|
|
get deployment collab \
|
|
-o 'jsonpath={.spec.template.spec.containers[0].image}' \
|
|
| cut -d: -f2
|
|
)
|
|
|
|
echo "Deployed image version: $deployed_image_id"
|
|
|
|
git fetch >/dev/null
|
|
if [[ "$(git rev-parse tags/$tag)" != $deployed_image_id ]]; then
|
|
echo "NOTE: tags/$tag $(git rev-parse tags/$tag) is not yet deployed"
|
|
fi;
|