Skip to content

WiP Redesign the encoding of Longs in JavaScript + GCC v20240317 (JDK 17+). #5216

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

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
strategy:
matrix:
java: [ '8' ]
java: [ '17' ]

# Use the latest supported version. We will be less affected by ambient changes
# due to the lack of pinning than by breakages because of changing version support.
Expand Down
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -523,8 +523,8 @@ def Tasks = [
'''
]

def mainJavaVersion = "1.8"
def otherJavaVersions = ["11", "17", "21"]
def mainJavaVersion = "17"
def otherJavaVersions = ["21"]
def allJavaVersions = otherJavaVersions.clone()
allJavaVersions << mainJavaVersion

Expand Down
Loading