Skip to content

Commit 0851846

Browse files
author
William Kemper
committedAug 31, 2023
Merge
2 parents ade7796 + cb3f968 commit 0851846

File tree

278 files changed

+6927
-2239
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

278 files changed

+6927
-2239
lines changed
 

‎.github/actions/get-bootjdk/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -104,6 +104,6 @@ runs:
104104
- name: 'Export path to where BootJDK is installed'
105105
id: path-name
106106
run: |
107-
# Export the path
108-
echo 'path=bootjdk/jdk' >> $GITHUB_OUTPUT
107+
# Export the absolute path
108+
echo "path=`pwd`/bootjdk/jdk" >> $GITHUB_OUTPUT
109109
shell: bash

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,7 @@ jobs:
111111
g++-${{ inputs.gcc-major-version }} \
112112
gcc-${{ inputs.gcc-major-version }}-${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}} \
113113
g++-${{ inputs.gcc-major-version }}-${{ matrix.gnu-arch }}-linux-gnu${{ matrix.gnu-abi}} \
114-
libxrandr-dev libxtst-dev libcups2-dev libasound2-dev \
115-
debian-ports-archive-keyring
114+
libxrandr-dev libxtst-dev libcups2-dev libasound2-dev
116115
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 }}
117116
118117
- name: 'Check cache for sysroot'
@@ -134,7 +133,6 @@ jobs:
134133
--include=fakeroot,symlinks,build-essential,libx11-dev,libxext-dev,libxrender-dev,libxrandr-dev,libxtst-dev,libxt-dev,libcups2-dev,libfontconfig1-dev,libasound2-dev,libfreetype-dev,libpng-dev
135134
--resolve-deps
136135
--variant=minbase
137-
$(test -n "${{ matrix.debian-keyring }}" && echo "--keyring=${{ matrix.debian-keyring }}")
138136
${{ matrix.debian-version }}
139137
sysroot
140138
${{ matrix.debian-repository }}

0 commit comments

Comments
 (0)
Please sign in to comment.