Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8193017: Import freetype sources into OpenJDK source tree #318

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1,733 changes: 0 additions & 1,733 deletions .github/workflows/freetype.vcxproj

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -725,13 +725,6 @@ jobs:
with:
path: jdk

- name: Checkout the FreeType source
uses: actions/checkout@v4
with:
repository: "freetype/freetype"
ref: VER-2-8-1
path: freetype

- name: Restore boot JDK from cache
id: bootjdk
uses: actions/cache@v4
Expand Down Expand Up @@ -798,18 +791,11 @@ jobs:
- name: Fix OpenJDK permissions
run: bash -c "chmod -R 0777 jdk"

- name: Copy FreeType project file
run: >
Remove-Item "$env:GITHUB_WORKSPACE\freetype\builds\windows\vc2010\freetype.vcxproj" ;
Copy-Item -Path "$env:GITHUB_WORKSPACE\jdk\.github\workflows\freetype.vcxproj"
-Destination "$env:GITHUB_WORKSPACE\freetype\builds\windows\vc2010\freetype.vcxproj" ;

- name: Configure
run: >
$env:Path = "$HOME\cygwin\cygwin64\bin;$HOME\cygwin\cygwin64\bin;$env:Path" ;
$env:Path = $env:Path -split ";" -match "C:\\Windows|PowerShell|cygwin" -join ";" ;
$env:BOOT_JDK = cygpath "$HOME/bootjdk/$env:BOOT_JDK_VERSION" ;
$env:FREETYPE_HOME = "$env:GITHUB_WORKSPACE\freetype" ;
$env:JT_HOME = cygpath "$HOME/jtreg" ;
& bash configure
--with-toolchain-version=2017
Expand All @@ -818,7 +804,6 @@ jobs:
--with-user-release-suffix="$env:GITHUB_ACTOR-$env:GITHUB_SHA"
--with-build-number=b00
--with-boot-jdk="$env:BOOT_JDK"
--with-freetype-src="$env:FREETYPE_HOME"
--with-jtreg="$env:JT_HOME" ;
bash -c "cat $(find -name config.log)"
working-directory: jdk
Expand Down Expand Up @@ -906,13 +891,6 @@ jobs:
with:
path: jdk

- name: Checkout the FreeType source
uses: actions/checkout@v4
with:
repository: "freetype/freetype"
ref: VER-2-8-1
path: freetype

- name: Restore boot JDK from cache
id: bootjdk
uses: actions/cache@v4
Expand Down Expand Up @@ -970,18 +948,11 @@ jobs:
- name: Fix OpenJDK permissions
run: bash -c "chmod -R 0777 jdk"

- name: Copy FreeType project file
run: >
Remove-Item "$env:GITHUB_WORKSPACE\freetype\builds\windows\vc2010\freetype.vcxproj" ;
Copy-Item -Path "$env:GITHUB_WORKSPACE\jdk\.github\workflows\freetype.vcxproj"
-Destination "$env:GITHUB_WORKSPACE\freetype\builds\windows\vc2010\freetype.vcxproj" ;

- name: Configure
run: >
$env:Path = "$HOME\cygwin\cygwin64\bin;$HOME\cygwin\cygwin64\bin;$env:Path" ;
$env:Path = $env:Path -split ";" -match "C:\\Windows|PowerShell|cygwin" -join ";" ;
$env:BOOT_JDK = cygpath "$HOME/bootjdk/$env:BOOT_JDK_VERSION" ;
$env:FREETYPE_HOME = "$env:GITHUB_WORKSPACE\freetype" ;
$env:JT_HOME = cygpath "$HOME/jtreg" ;
& bash configure
--with-conf-name=windows-x86
Expand All @@ -992,7 +963,6 @@ jobs:
--with-user-release-suffix="$env:GITHUB_ACTOR-$env:GITHUB_SHA"
--with-build-number=b00
--with-boot-jdk="$env:BOOT_JDK"
--with-freetype-src="$env:FREETYPE_HOME"
--with-jtreg="$env:JT_HOME" ;
bash -c "cat $(find -name config.log)"
working-directory: jdk
Expand Down
Loading