Skip to content

build: bump version to 0.46.0 #933

build: bump version to 0.46.0

build: bump version to 0.46.0 #933

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Setup Build Environment
run: |
sudo apt-get update
sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 libgbm1
sudo /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
sleep 3
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Node.js modules
run: npm install
- name: Lint
run: npm run lint
- name: Build OSGi bundle
run: npm run build-plugin
# buildJdtlsExt.js regenerates contributes.javaExtensions from server/.
# If the committed list is stale (e.g. someone bumped a Maven dep in
# java-extension/ without re-running the build), the regenerated file
# will differ. Fail the build with the diff so the drift can't slip
# into a release unnoticed (cf. the 5.14.3/1.14.3 -> 5.14.4/1.14.4
# mismatch this script was added to guard against).
- name: Verify javaExtensions is in sync with server/
run: git diff --exit-code --ignore-cr-at-eol -- package.json
- name: prepublish
run: npm run vscode:prepublish
- name: Test extension
run: DISPLAY=:99 npm test
- name: Print language server Log if job failed
if: ${{ failure() }}
run: find $HOME/.config/Code/User/workspaceStorage/*/redhat.java/jdt_ws/.metadata/.log -print -exec cat '{}' \;;
windows:
name: Windows
runs-on: windows-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Node.js modules
run: npm install
- name: Lint
run: npm run lint
- name: Build OSGi bundle
run: npm run build-plugin
- name: Verify javaExtensions is in sync with server/
run: git diff --exit-code --ignore-cr-at-eol -- package.json
- name: prepublish
run: npm run vscode:prepublish
- name: Test extension
run: npm test
- name: Print language server Log if job failed
if: ${{ failure() }}
run: Get-ChildItem -Path $env:APPDATA/Code/User/workspaceStorage/*/redhat.java/jdt_ws/.metadata/.log | cat
darwin:
name: macOS
runs-on: macos-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Node.js modules
run: npm install
- name: Lint
run: npm run lint
- name: Build OSGi bundle
run: npm run build-plugin
- name: Verify javaExtensions is in sync with server/
run: git diff --exit-code --ignore-cr-at-eol -- package.json
- name: prepublish
run: npm run vscode:prepublish
- name: Test extension
run: npm test
- name: Print language server Log if job failed
if: ${{ failure() }}
run: find $HOME/Library/Application\ Support/Code/User/workspaceStorage/*/redhat.java/jdt_ws/.metadata/.log -print -exec cat '{}' \;;