mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-28 20:59:30 +00:00
* 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>
17 lines
212 B
Bash
Executable File
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
|