Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(packages): switch to new builder for release profile #452

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 26 additions & 26 deletions .github/scripts/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@ function test_get_builder() {
done
done

# experiment profile
local components="tidb tiflow tiflash tikv pd ctl monitoring ng-monitoring tidb-tools"
local versions="v8.5.0 v8.4.0"
for cm in $components; do
for version in $versions; do
for os in $operating_systems; do
for ac in $architectures; do
echo -en "[🚢] $cm $os $ac $version experiment:\t"
$script $cm $os $ac $version experiment
done
done
done
done
# # experiment profile
# local components="tidb tiflow tiflash tikv pd ctl monitoring ng-monitoring tidb-tools"
# local versions="v8.5.0 v8.4.0"
# for cm in $components; do
# for version in $versions; do
# for os in $operating_systems; do
# for ac in $architectures; do
# echo -en "[🚢] $cm $os $ac $version experiment:\t"
# $script $cm $os $ac $version experiment
# done
# done
# done
# done
}

##### others that owns theirs non-unified versions #####
Expand Down Expand Up @@ -235,19 +235,19 @@ function test_gen_package_images_script() {
done
done

# experiment profile
local profile="experiment"
local versions="v8.5.0 v8.4.0"
local components="tidb tiflow tiflash tikv pd ctl monitoring ng-monitoring tidb-tools"
for cm in $components; do
for version in $versions; do
for ac in $architectures; do
echo -en "[📃💿] $cm $os $ac $version $profile:\t"
$script $cm $os $ac $version $profile branch-xxx 123456789abcdef
shellcheck -S error packages/scripts/build-package-images.sh
done
done
done
# # experiment profile
# local profile="experiment"
# local versions="v8.5.0 v8.4.0"
# local components="tidb tiflow tiflash tikv pd ctl monitoring ng-monitoring tidb-tools"
# for cm in $components; do
# for version in $versions; do
# for ac in $architectures; do
# echo -en "[📃💿] $cm $os $ac $version $profile:\t"
# $script $cm $os $ac $version $profile branch-xxx 123456789abcdef
# shellcheck -S error packages/scripts/build-package-images.sh
# done
# done
# done
}

function test_gen_package_images_script_freedom_releasing() {
Expand Down
Loading
Loading