Skip to content

Commit

Permalink
ci(packages): add ci steps to verify enterprise profile
Browse files Browse the repository at this point in the history
Signed-off-by: wuhuizuo <[email protected]>
  • Loading branch information
wuhuizuo committed Dec 26, 2023
1 parent 2e5bfd6 commit eff1f15
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions packages/scripts/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ function test_get_builder() {
done
done

# tidb enterprise profile
local cm="tidb"
for version in $versions; do
for os in $operating_systems; do
for ac in $architectures; do
echo "$cm $os $ac $version:"
$script $cm $os $ac $version $profile
done
done
done

##### others that owns theirs non-unified versions #####
# tidb-operator
local cm="tidb-operator"
Expand Down Expand Up @@ -71,6 +82,17 @@ function test_gen_package_artifacts_script() {
done
done

# tidb enterprise profile
local cm="tidb"
for version in $versions; do
for os in $operating_systems; do
for ac in $architectures; do
echo "$cm $os $ac $version:"
$script $cm $os $ac $version $profile branch-xxx 123456789abcdef
done
done
done

##### others that owns theirs non-unified versions #####
# tidb-operator
local cm="tidb-operator"
Expand Down Expand Up @@ -119,6 +141,17 @@ function test_gen_package_images_script() {
done
done

# tidb enterprise profile
local cm="tidb"
for version in $versions; do
for os in $operating_systems; do
for ac in $architectures; do
echo "$cm $os $ac $version:"
$script $cm $os $ac $version $profile branch-xxx 123456789abcdef
done
done
done

##### others that owns theirs non-unified versions #####
# tidb-operator
local cm="tidb-operator"
Expand Down

0 comments on commit eff1f15

Please sign in to comment.