Skip to content

Commit

Permalink
upgrade Ωedit to solve DE startup problem under Windows, replace node…
Browse files Browse the repository at this point in the history
… 16 with node 20 in CI
  • Loading branch information
scholarsmate committed Oct 22, 2024
1 parent b1d388a commit 899f170
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
push:
branches-ignore: [ 'dependabot/**' ]
pull_request:
types: [opened, synchronize, reopened]
types: [ opened, synchronize, reopened ]

jobs:
single-commit:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
java_distribution: [ temurin ]
java_version: [ 8 ]
os: [ ubuntu-20.04 ]
node: [ '16' ]
node: [ '18' ]
runs-on: ${{ matrix.os }}
defaults:
run:
Expand Down Expand Up @@ -126,13 +126,13 @@ jobs:
run: $SBT ratCheck || (cat target/rat.txt; exit 1)

build-test-package:
name: 'Build, Test, and Package (OS: ${{ matrix.os }}, Node: ${{ matrix.node }}, Java: ${{ matrix.java_version }})'
name: 'Build, Test, and Package (OS: ${{ matrix.os }}, Node: ${{ matrix.node }}, Java: ${{ matrix.java_version }}, VS Code: ${{ matrix.vscode }})'
strategy:
matrix:
java_distribution: [ temurin ]
java_version: [ 8, 11, 17 ]
os: [ macos-12, ubuntu-20.04, windows-2019 ]
node: [ '16', '18.20.1' ] # version 18.20.2 (current latest of 18) is broken on windows
node: [ '18.20.1' ] # version 18.20.2 (current latest of 18) is broken on windows
vscode: [ '1.91.1' ]
fail-fast: false # don't immediately fail all other jobs if a single job fails
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ on:

jobs:
build-test-package:
name: 'Build, Test, and Package (OS: ${{ matrix.os }}, Node: ${{ matrix.node }}, Java: ${{ matrix.java_version }}, VS Code: ${{ matrix.vscode }} )'
name: 'Build, Test, and Package (OS: ${{ matrix.os }}, Node: ${{ matrix.node }}, Java: ${{ matrix.java_version }}, VS Code: ${{ matrix.vscode }})'
strategy:
matrix:
os: [ macos-12, ubuntu-20.04, windows-2019, macos-latest, ubuntu-latest, windows-latest ]
node: [ '16', '18.20.1' ] # version 18.20.2 (current latest of 18) is broken on windows
node: [ '18.20.1', '20' ] # version 18.20.2 (current latest of 18) is broken on windows
vscode: [ '1.91.1', 'stable', 'insiders' ]
java_distribution: [ temurin ]
java_version: [ 8, 11, 17 ]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"svelte:check": "svelte-check --tsconfig ./tsconfig.json"
},
"dependencies": {
"@omega-edit/client": "0.9.82",
"@omega-edit/client": "0.9.83",
"@viperproject/locate-java-home": "1.1.15",
"@vscode/debugadapter": "1.63.0",
"@vscode/webview-ui-toolkit": "^1.2.2",
Expand Down

0 comments on commit 899f170

Please sign in to comment.