This is an automated email from the ASF dual-hosted git repository.
shanedell 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 b1d388a Update nightly tests to not run newer versions of VSCode on
Windows
b1d388a is described below
commit b1d388aea13e6a54e540a154364221f587c453da
Author: Shane Dell <[email protected]>
AuthorDate: Fri Oct 4 11:30:10 2024 -0400
Update nightly tests to not run newer versions of VSCode on Windows
---
.github/workflows/nightly.yml | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 8d08b7a..6af3476 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -28,13 +28,23 @@ jobs:
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: [ 'stable', 'insiders' ]
+ vscode: [ '1.91.1', 'stable', 'insiders' ]
java_distribution: [ temurin ]
java_version: [ 8, 11, 17 ]
exclude:
# java 8 not available on latest macos
- os: macos-latest
java_version: 8
+ # Currently newer versions of VSCode don't work the same on Windows,
this will need looked into.
+ # TODO: Remove the below windows excludes once the extension tests
are working with newer versions of VSCode
+ - os: windows-2019
+ vscode: 'stable'
+ - os: windows-2019
+ vscode: 'insiders'
+ - os: windows-latest
+ vscode: 'stable'
+ - os: windows-latest
+ vscode: 'insiders'
fail-fast: false # don't immediately fail all other jobs if a single
job fails
runs-on: ${{ matrix.os }}
defaults: