mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-21 16:53:23 +00:00
* Test: add e2e-test guarantee multi-cluster rollout * Fix: install rollout runtime chart add cluster name in dockerfile Fix: build image error enable all test Fix: add rollout chart add shebang fix image repo
13 lines
260 B
Bash
Executable File
13 lines
260 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TEMP_DIR="./runtime/rollout/e2e/tmp/"
|
|
|
|
mkdir -p $TEMP_DIR
|
|
cp -r go.mod $TEMP_DIR
|
|
cp -r go.sum $TEMP_DIR
|
|
cp -r entrypoint.sh $TEMP_DIR
|
|
cp -r runtime/rollout/cmd/main.go $TEMP_DIR
|
|
cp -r ./apis $TEMP_DIR
|
|
cp -r ./pkg $TEMP_DIR
|
|
cp -r ./version $TEMP_DIR
|