This is an automated email from the ASF dual-hosted git repository.
davin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git
The following commit(s) were added to refs/heads/main by this push:
new ba7cfe0 upgrade Ωedit to solve DE startup problem under Windows,
remove node 16 in CI
ba7cfe0 is described below
commit ba7cfe0210f88a5e17fca793d3f325b28c852296
Author: Davin Shearer <[email protected]>
AuthorDate: Tue Oct 22 10:04:16 2024 -0400
upgrade Ωedit to solve DE startup problem under Windows, remove node 16 in
CI
---
.github/workflows/CI.yml | 10 +++++-----
.github/workflows/nightly.yml | 6 +++---
package.json | 2 +-
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index fedc340..2e480b5 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -19,7 +19,7 @@ on:
push:
branches-ignore: [ 'dependabot/**' ]
pull_request:
- types: [opened, synchronize, reopened]
+ types: [ opened, synchronize, reopened ]
jobs:
single-commit:
@@ -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:
@@ -126,14 +126,14 @@ 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
- vscode: [ '1.91.1' ]
+ node: [ '18.20.1' ]
+ vscode: [ '1.82.0', 'stable' ] # v1.82.0 is the first version of
VSCode to use Node 18
fail-fast: false # don't immediately fail all other jobs if a single
job fails
runs-on: ${{ matrix.os }}
defaults:
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 6af3476..4780b70 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -23,12 +23,12 @@ 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
- vscode: [ '1.91.1', 'stable', 'insiders' ]
+ node: [ '18.20.1' ]
+ vscode: [ '1.82.0', 'stable', 'insiders' ] # v1.82.0 is the first
version of VSCode to use Node 18
java_distribution: [ temurin ]
java_version: [ 8, 11, 17 ]
exclude:
diff --git a/package.json b/package.json
index 95396d0..e81f722 100644
--- a/package.json
+++ b/package.json
@@ -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",