-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from lf-lang/check-versions
Dependency checks and environment setup assistance
- Loading branch information
Showing
24 changed files
with
4,917 additions
and
11,392 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Build | ||
description: Set up repository and install dependencies required to build extension. | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Check out vscode-lingua-franca repository | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
fetch-depth: 1 | ||
- name: Prepare LF build environment | ||
uses: ./lingua-franca/.github/actions/prepare-build-env | ||
- name: Build the VS Code extension | ||
run: npm install --ignore-scripts | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
*.jar | ||
*.vsix | ||
.vscode | ||
.vscode-test | ||
node_modules/* | ||
out/* | ||
.gradle/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}" | ||
], | ||
"name": "Launch Extension", | ||
"outFiles": [ | ||
"${workspaceFolder}/out/**/*.js" | ||
], | ||
"request": "launch", | ||
"type": "extensionHost" | ||
}, | ||
{ | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}", | ||
"--extensionTestsPath=${workspaceFolder}/out/test/test/index" | ||
], | ||
"env": { | ||
"dependencies": "present" | ||
}, | ||
"name": "Tests", | ||
"outFiles": [ | ||
"${workspaceFolder}/out/test/**/*.js" | ||
], | ||
"preLaunchTask": "npm: compile-tests", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"type": "extensionHost" | ||
}, | ||
{ | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}", | ||
"--extensionTestsPath=${workspaceFolder}/out/test/test/index" | ||
], | ||
"env": { | ||
"dependencies": "missing1" | ||
}, | ||
"name": "Tests: Dependencies Missing1", | ||
"outFiles": [ | ||
"${workspaceFolder}/out/test/**/*.js" | ||
], | ||
"preLaunchTask": "npm: compile-tests", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"type": "extensionHost" | ||
}, | ||
{ | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}", | ||
"--extensionTestsPath=${workspaceFolder}/out/test/test/index" | ||
], | ||
"env": { | ||
"dependencies": "outdated" | ||
}, | ||
"name": "Tests: Dependencies Outdated", | ||
"outFiles": [ | ||
"${workspaceFolder}/out/test/**/*.js" | ||
], | ||
"preLaunchTask": "npm: compile-tests", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"type": "extensionHost" | ||
}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "compile-tests" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ node_modules/ | |
lingua-franca/ | ||
__pycache__/* | ||
src/** | ||
out/test/** | ||
|
||
*.vsix | ||
.gitignore | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Submodule lingua-franca
updated
78 files
Oops, something went wrong.