Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enabled windows build #460

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 14 additions & 15 deletions .github/workflows/run-regression-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,25 @@ on:

jobs:
build:
name: Build Plugin
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
runtime: [ linux, mac ]
# Removing windows as a standard run flavor runtime: [ linux, mac, windows ]
# As Vscode 1.79 and 1.78 are the only support version for current release, running test with only latest,previous
#Enable it in future for multiple releases as applicable targetVSCode: [ previousMinusOne, previous, latest ]
targetVSCode: [previous, latest ]
# As Vscode 1.79 and 1.78 are the only support version for current release, running test with only latest,previous
#Enable it in future for multiple releases as applicable targetVSCode: [ previousMinusOne, previous, latest ]
runtime: [ linux, mac, windows ]
include:
- runtime: linux
os: ubuntu-latest

- runtime: mac
os: macOS-13

# - runtime: windows
# os: windows-latest

name: Build Plugin
runs-on: ${{ matrix.os }}
- runtime: linux
os: ubuntu-latest
reportName: linux-test-report
- runtime: mac
os: macOS-latest
reportName: mac-test-report
- runtime: windows
os: windows-latest
reportName: windows-test-report

steps:
# Checkout the eclipse plugin repository.
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@
"gulp-download2": "^1.1.0",
"mocha": "^9.2.2",
"ts-loader": "^9.3.1",
"typescript": "^4.8.4",
"vscode-extension-tester": "^7.3.0",
"typescript": "^5.7.2",
"vscode-extension-tester": "^8.10.0",
"vscode-test": "^1.3.0",
"webpack": "^5.96.1",
"webpack-cli": "^4.10.0",
Expand Down
4 changes: 2 additions & 2 deletions src/test/GradleTestDevModeActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ it('start gradle with options from liberty dashboard', async () => {
expect (deleteReport).to.be.true;
await utils.launchDashboardAction(item, constants.START_DASHBOARD_ACTION_WITH_PARAM, constants.START_DASHBOARD_MAC_ACTION_WITH_PARAM);
await utils.setCustomParameter("--hotTests");
await utils.delay(30000);
await utils.delay(100000);
const serverStartStatus = await utils.checkTerminalforServerState(constants.SERVER_START_STRING);
if(!serverStartStatus)
console.log("Server started with params message not found in terminal ");
Expand Down Expand Up @@ -132,7 +132,7 @@ it('start gradle with history from liberty dashboard', async () => {
const foundCommand = await utils.chooseCmdFromHistory("--hotTests");
console.log("foundcmd:" + foundCommand);
expect (foundCommand).to.be.true;
await utils.delay(30000);
await utils.delay(100000);
const serverStartStatus = await utils.checkTerminalforServerState(constants.SERVER_START_STRING);
if(!serverStartStatus)
console.log("Server started with params message not found in the terminal ");
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
],
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
"strict": true, /* enable all strict type-checking options */
"skipLibCheck": true /* ignoring type checking for third-party libraries */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
Expand Down
Loading