Skip to content

Commit 923c952

Browse files
committedAug 31, 2022
8293098: GHA: Harmonize GCC version handling for host and cross builds
Reviewed-by: ihse, clanger
1 parent 38377d5 commit 923c952

File tree

3 files changed

+34
-19
lines changed

3 files changed

+34
-19
lines changed
 

‎.github/workflows/build-cross-compile.yml

+8-11
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,14 @@ on:
2929
workflow_call:
3030
inputs:
3131
gcc-major-version:
32-
required: false
32+
required: true
3333
type: string
34-
default: '10'
3534
apt-gcc-version:
36-
required: false
35+
required: true
3736
type: string
38-
default: '10.3.0-1ubuntu1~20.04'
39-
apt-gcc-cross-suffix:
40-
required: false
37+
apt-gcc-cross-version:
38+
required: true
4139
type: string
42-
default: 'cross1'
4340

4441
jobs:
4542
build-cross-compile:
@@ -95,8 +92,8 @@ jobs:
9592
sudo apt-get install \
9693
gcc-${{ inputs.gcc-major-version }}=${{ inputs.apt-gcc-version }} \
9794
g++-${{ inputs.gcc-major-version }}=${{ inputs.apt-gcc-version }} \
98-
gcc-${{ inputs.gcc-major-version }}-${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}}=${{ inputs.apt-gcc-version }}${{ inputs.apt-gcc-cross-suffix }} \
99-
g++-${{ inputs.gcc-major-version }}-${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}}=${{ inputs.apt-gcc-version }}${{ inputs.apt-gcc-cross-suffix }} \
95+
gcc-${{ inputs.gcc-major-version }}-${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}}=${{ inputs.apt-gcc-cross-version }} \
96+
g++-${{ inputs.gcc-major-version }}-${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}}=${{ inputs.apt-gcc-cross-version }} \
10097
libxrandr-dev libxtst-dev libcups2-dev libasound2-dev
10198
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ inputs.gcc-major-version }} 100 --slave /usr/bin/g++ g++ /usr/bin/g++-${{ inputs.gcc-major-version }}
10299
@@ -143,8 +140,8 @@ jobs:
143140
--openjdk-target=${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}}
144141
--with-sysroot=sysroot
145142
--with-build-jdk=${{ steps.buildjdk.outputs.jdk-path }}
146-
CC=${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}}-gcc-10
147-
CXX=${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}}-g++-10
143+
CC=${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}}-gcc-${{ inputs.gcc-major-version }}
144+
CXX=${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}}-g++-${{ inputs.gcc-major-version }}
148145
149146
- name: 'Build'
150147
id: build

‎.github/workflows/build-linux.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ on:
4242
required: false
4343
type: string
4444
default: '[ "debug", "release" ]'
45+
gcc-major-version:
46+
required: true
47+
type: string
48+
gcc-package-suffix:
49+
required: false
50+
type: string
51+
default: ''
4552
apt-gcc-version:
4653
required: true
4754
type: string
@@ -101,8 +108,8 @@ jobs:
101108
fi
102109
sudo apt-get update
103110
sudo apt-get install --only-upgrade apt
104-
sudo apt-get install gcc-${{ inputs.apt-gcc-version }} g++-${{ inputs.apt-gcc-version }} libxrandr-dev${{ steps.arch.outputs.suffix }} libxtst-dev${{ steps.arch.outputs.suffix }} libcups2-dev${{ steps.arch.outputs.suffix }} libasound2-dev${{ steps.arch.outputs.suffix }} ${{ inputs.apt-extra-packages }}
105-
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 --slave /usr/bin/g++ g++ /usr/bin/g++-10
111+
sudo apt-get install gcc-${{ inputs.gcc-major-version }}${{ inputs.gcc-package-suffix }}=${{ inputs.apt-gcc-version }} g++-${{ inputs.gcc-major-version }}${{ inputs.gcc-package-suffix }}=${{ inputs.apt-gcc-version }} libxrandr-dev${{ steps.arch.outputs.suffix }} libxtst-dev${{ steps.arch.outputs.suffix }} libcups2-dev${{ steps.arch.outputs.suffix }} libasound2-dev${{ steps.arch.outputs.suffix }} ${{ inputs.apt-extra-packages }}
112+
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ inputs.gcc-major-version }} 100 --slave /usr/bin/g++ g++ /usr/bin/g++-${{ inputs.gcc-major-version }}
106113
107114
- name: 'Configure'
108115
run: >

‎.github/workflows/main.yml

+17-6
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ jobs:
123123
uses: ./.github/workflows/build-linux.yml
124124
with:
125125
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'
127128
# The linux-x64 jdk bundle is used as buildjdk for the cross-compile job
128129
if: needs.select.outputs.linux-x64 == 'true' || needs.select.outputs.linux-cross-compile == 'true'
129130

@@ -133,7 +134,9 @@ jobs:
133134
uses: ./.github/workflows/build-linux.yml
134135
with:
135136
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'
137140
apt-architecture: 'i386'
138141
# Some multilib libraries do not have proper inter-dependencies, so we have to
139142
# install their dependencies manually.
@@ -149,7 +152,8 @@ jobs:
149152
platform: linux-x64
150153
make-target: 'hotspot'
151154
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'
153157
extra-conf-options: '--disable-precompiled-headers'
154158
if: needs.select.outputs.linux-x64-variants == 'true'
155159

@@ -161,7 +165,8 @@ jobs:
161165
platform: linux-x64
162166
make-target: 'hotspot'
163167
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'
165170
extra-conf-options: '--with-jvm-variants=zero --disable-precompiled-headers'
166171
if: needs.select.outputs.linux-x64-variants == 'true'
167172

@@ -173,7 +178,8 @@ jobs:
173178
platform: linux-x64
174179
make-target: 'hotspot'
175180
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'
177183
extra-conf-options: '--with-jvm-variants=minimal --disable-precompiled-headers'
178184
if: needs.select.outputs.linux-x64-variants == 'true'
179185

@@ -186,7 +192,8 @@ jobs:
186192
make-target: 'hotspot'
187193
# Technically this is not the "debug" level, but we can't inject a new matrix state for just this job
188194
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'
190197
extra-conf-options: '--with-debug-level=optimized --disable-precompiled-headers'
191198
if: needs.select.outputs.linux-x64-variants == 'true'
192199

@@ -196,6 +203,10 @@ jobs:
196203
- select
197204
- build-linux-x64
198205
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'
199210
if: needs.select.outputs.linux-cross-compile == 'true'
200211

201212
build-macos-x64:

0 commit comments

Comments
 (0)
Please sign in to comment.