k3s/scripts/package
Brad Davidson 5c8f2364c4 Move Windows compilation test to GH Actions and enable integration/coverage
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2025-02-07 07:46:19 -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