-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to run tests on VS Code Insiders (#1094)
* Add ability to run tests on VS Code Insiders Add a new docker compose file that lets us run the tests on VS Code insiders so we can catch issues before they show up for most users in the mainline VS Code release. * Use Swift 6.0 instead of main
- Loading branch information
1 parent
36f60a5
commit 39beed5
Showing
2 changed files
with
17 additions
and
2 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
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,15 @@ | ||
services: | ||
|
||
runtime-setup: | ||
image: vscode-swift:22.04-6.0-insiders | ||
build: | ||
args: | ||
base_image: "swiftlang/swift:nightly-6.0-jammy" | ||
|
||
test: | ||
image: vscode-swift:22.04-6.0-insiders | ||
environment: | ||
- VSCODE_VERSION=insiders | ||
|
||
shell: | ||
image: vscode-swift:22.04-6.0-insiders |