File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ set_cuda_options() {
59
59
# Set build options
60
60
set_build_options () {
61
61
if [ " $option_devel_only " = " true" ]; then
62
- targets=(" devel" )
62
+ targets=(" universe- devel" )
63
63
else
64
64
targets=()
65
65
fi
@@ -132,9 +132,9 @@ build_images() {
132
132
--set " *.args.BASE_IMAGE=$base_image " \
133
133
--set " *.args.SETUP_ARGS=$setup_args " \
134
134
--set " *.args.LIB_DIR=$lib_dir " \
135
- --set " base.tags=ghcr.io/autowarefoundation/autoware:latest- base" \
136
- --set " devel.tags=ghcr.io/autowarefoundation/autoware:latest -devel$image_name_suffix " \
137
- --set " runtime .tags=ghcr.io/autowarefoundation/autoware:latest-runtime $image_name_suffix " \
135
+ --set " base.tags=ghcr.io/autowarefoundation/autoware:base" \
136
+ --set " universe- devel.tags=ghcr.io/autowarefoundation/autoware:universe -devel$image_name_suffix " \
137
+ --set " universe .tags=ghcr.io/autowarefoundation/autoware:universe $image_name_suffix " \
138
138
" ${targets[@]} "
139
139
set +x
140
140
}
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ parse_arguments() {
91
91
set_variables () {
92
92
if [ " $option_devel " = " true" ]; then
93
93
# Set image based on option
94
- IMAGE=" ghcr.io/autowarefoundation/autoware:latest -devel"
94
+ IMAGE=" ghcr.io/autowarefoundation/autoware:universe -devel"
95
95
96
96
# Set workspace path, if not provided use the current directory
97
97
if [ " $WORKSPACE_PATH " = " " ]; then
@@ -113,12 +113,12 @@ set_variables() {
113
113
fi
114
114
else
115
115
# Set image based on option
116
- IMAGE=" ghcr.io/autowarefoundation/autoware:latest-runtime "
116
+ IMAGE=" ghcr.io/autowarefoundation/autoware:universe "
117
117
118
118
# Set map path
119
119
if [ " $MAP_PATH " = " " ]; then
120
120
echo -e " \n------------------------------------------------------------"
121
- echo -e " ${RED} Note:${NC} The --map-path option is mandatory for the runtime. For development environment with shell access, use --devel option."
121
+ echo -e " ${RED} Note:${NC} The --map-path option is mandatory for the universe( runtime image) . For development environment with shell access, use --devel option."
122
122
echo -e " ------------------------------------------------------------"
123
123
exit 1
124
124
else
You can’t perform that action at this time.
0 commit comments