Mark the "previous value or null
" type of Properties.compute
as n…
#30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JSpecify JDK CI tests | |
on: | |
pull_request: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build_jdk: | |
name: Build the JSpecify JDK | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
env: | |
JAVA_VERSION: 23 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 23 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 23 | |
distribution: 'temurin' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install --only-upgrade apt | |
sudo apt-get install gcc-10 g++-10 libxrandr-dev libxtst-dev libcups2-dev libasound2-dev | |
- name: Install jtreg | |
run: | | |
wget https://builds.shipilev.net/jtreg/jtreg-7.5%2B1.zip -O /tmp/jtreg.zip | |
unzip /tmp/jtreg.zip -d /tmp/ | |
- name: Configure the JDK | |
run: bash ./configure --with-jtreg=/tmp/jtreg --disable-warnings-as-errors | |
- name: Build the JDK | |
run: make jdk | |