k3s/scripts/package
Brad Davidson 4aceb37b1a Move Windows compilation test to GH Actions and enable integration/coverage
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
(cherry picked from commit 5c8f2364c4)
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2025-02-10 10:16:03 -08:00

17 lines
213 B
Bash
Executable file

#!/bin/bash
set -e
cd $(dirname $0)
if [ ! -e ../bin/containerd ]; then
./build
fi
./package-cli
if [ -z "$SKIP_IMAGE" ]; then
./package-image
fi
if [ -z "$SKIP_AIRGAP" ]; then
./package-airgap
fi