@@ -123,7 +123,8 @@ jobs:
123
123
uses : ./.github/workflows/build-linux.yml
124
124
with :
125
125
platform : linux-x64
126
- apt-gcc-version : ' 10=10.3.0-1ubuntu1~20.04'
126
+ gcc-major-version : ' 10'
127
+ apt-gcc-version : ' 10.3.0-1ubuntu1~20.04'
127
128
# The linux-x64 jdk bundle is used as buildjdk for the cross-compile job
128
129
if : needs.select.outputs.linux-x64 == 'true' || needs.select.outputs.linux-cross-compile == 'true'
129
130
@@ -133,7 +134,9 @@ jobs:
133
134
uses : ./.github/workflows/build-linux.yml
134
135
with :
135
136
platform : linux-x86
136
- apt-gcc-version : ' 10-multilib'
137
+ gcc-major-version : ' 10'
138
+ gcc-package-suffix : ' -multilib'
139
+ apt-gcc-version : ' 10.3.0-1ubuntu1~20.04'
137
140
apt-architecture : ' i386'
138
141
# Some multilib libraries do not have proper inter-dependencies, so we have to
139
142
# install their dependencies manually.
@@ -149,7 +152,8 @@ jobs:
149
152
platform : linux-x64
150
153
make-target : ' hotspot'
151
154
debug-levels : ' [ "debug" ]'
152
- apt-gcc-version : ' 10=10.3.0-1ubuntu1~20.04'
155
+ gcc-major-version : ' 10'
156
+ apt-gcc-version : ' 10.3.0-1ubuntu1~20.04'
153
157
extra-conf-options : ' --disable-precompiled-headers'
154
158
if : needs.select.outputs.linux-x64-variants == 'true'
155
159
@@ -161,7 +165,8 @@ jobs:
161
165
platform : linux-x64
162
166
make-target : ' hotspot'
163
167
debug-levels : ' [ "debug" ]'
164
- apt-gcc-version : ' 10=10.3.0-1ubuntu1~20.04'
168
+ gcc-major-version : ' 10'
169
+ apt-gcc-version : ' 10.3.0-1ubuntu1~20.04'
165
170
extra-conf-options : ' --with-jvm-variants=zero --disable-precompiled-headers'
166
171
if : needs.select.outputs.linux-x64-variants == 'true'
167
172
@@ -173,7 +178,8 @@ jobs:
173
178
platform : linux-x64
174
179
make-target : ' hotspot'
175
180
debug-levels : ' [ "debug" ]'
176
- apt-gcc-version : ' 10=10.3.0-1ubuntu1~20.04'
181
+ gcc-major-version : ' 10'
182
+ apt-gcc-version : ' 10.3.0-1ubuntu1~20.04'
177
183
extra-conf-options : ' --with-jvm-variants=minimal --disable-precompiled-headers'
178
184
if : needs.select.outputs.linux-x64-variants == 'true'
179
185
@@ -186,7 +192,8 @@ jobs:
186
192
make-target : ' hotspot'
187
193
# Technically this is not the "debug" level, but we can't inject a new matrix state for just this job
188
194
debug-levels : ' [ "debug" ]'
189
- apt-gcc-version : ' 10=10.3.0-1ubuntu1~20.04'
195
+ gcc-major-version : ' 10'
196
+ apt-gcc-version : ' 10.3.0-1ubuntu1~20.04'
190
197
extra-conf-options : ' --with-debug-level=optimized --disable-precompiled-headers'
191
198
if : needs.select.outputs.linux-x64-variants == 'true'
192
199
@@ -196,6 +203,10 @@ jobs:
196
203
- select
197
204
- build-linux-x64
198
205
uses : ./.github/workflows/build-cross-compile.yml
206
+ with :
207
+ gcc-major-version : ' 10'
208
+ apt-gcc-version : ' 10.3.0-1ubuntu1~20.04'
209
+ apt-gcc-cross-version : ' 10.3.0-1ubuntu1~20.04cross1'
199
210
if : needs.select.outputs.linux-cross-compile == 'true'
200
211
201
212
build-macos-x64 :
0 commit comments