Skip to content
Merged
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
49 changes: 13 additions & 36 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,15 @@
#
# Copyright (c) 2022, 2025, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#


name: 'Build (macos)'

on:
workflow_call:
inputs:
platform:
required: true
required: false
type: string
runs-on:
required: true
required: false
type: string
extra-conf-options:
required: false
Expand All @@ -46,7 +23,7 @@ on:
type: string
default: '[ "debug", "release" ]'
xcode-toolset-version:
required: true
required: false
type: string
configure-arguments:
required: false
Expand All @@ -69,37 +46,37 @@ jobs:
matrix:
debug-level: ${{ fromJSON(inputs.debug-levels) }}
include:
- debug-level: debug
debug-level: debug
flags: --with-debug-level=fastdebug
suffix: -debug

steps:
- name: 'Checkout the JDK source'
name: 'Checkout the JDK source'
uses: actions/checkout@v6

- name: 'Get the BootJDK'
name: 'Get the BootJDK'
id: bootjdk
uses: ./.github/actions/get-bootjdk
with:
platform: ${{ inputs.platform }}

- name: 'Get JTReg'
name: 'Get JTReg'
id: jtreg
uses: ./.github/actions/get-jtreg

- name: 'Get GTest'
name: 'Get GTest'
id: gtest
uses: ./.github/actions/get-gtest

- name: 'Install toolchain and dependencies'
name: 'Install toolchain and dependencies'
run: |
# Run Homebrew installation and xcode-select
brew install autoconf make
sudo xcode-select --switch /Applications/Xcode_${{ inputs.xcode-toolset-version }}.app/Contents/Developer
# This will make GNU make available as 'make' and not only as 'gmake'
echo '/usr/local/opt/make/libexec/gnubin' >> $GITHUB_PATH
- name: 'Configure'
name: 'Configure'
run: >
bash configure
--with-conf-name=${{ inputs.platform }}
Expand All @@ -117,7 +94,7 @@ jobs:
cat config.log &&
exit 1)
- name: 'Build'
name: 'Build'
id: build
uses: ./.github/actions/do-build
with:
Expand All @@ -126,7 +103,7 @@ jobs:
debug-suffix: '${{ matrix.suffix }}'
if: ${{ inputs.dry-run == false }}

- name: 'Upload bundles'
name: 'Upload bundles'
uses: ./.github/actions/upload-bundles
with:
platform: ${{ inputs.platform }}
Expand Down
Loading