k3s/scripts/package
Derek Nola 9702f92345
Fix for Kubeflag Integration test (#8154)
* Use argument that doesn't require file
* Use build-k3s workflow in cgroup
* Bump timeout on integration tests

Signed-off-by: Derek Nola <derek.nola@suse.com>
2023-08-07 14:04:04 -07:00

17 lines
212 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