-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix daemons and path problems (#8994)
* Fix daemons and path problems * Skip stuff we don't need to get windows to run faster
- Loading branch information
Showing
5 changed files
with
9 additions
and
4 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 |
---|---|---|
|
@@ -527,27 +527,32 @@ jobs: | |
# Used by tests for non-python kernels. | ||
# Test are enabled via env variable `VSC_JUPYTER_CI_RUN_NON_PYTHON_NB_TEST` | ||
- name: Install Julia | ||
if: matrix.os != 'windows-latest' | ||
uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{env.JULIA_VERSION}} | ||
|
||
- name: Install Julia Kernel | ||
if: matrix.os != 'windows-latest' | ||
shell: bash | ||
run: | | ||
julia -e ' | ||
using Pkg | ||
Pkg.add("IJulia")' | ||
- name: Install Dot.net | ||
if: matrix.os != 'windows-latest' | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: ${{env.DOTNET_VERSION}} | ||
|
||
- name: Install .NET Interactive | ||
if: matrix.os != 'windows-latest' | ||
shell: bash -l {0} | ||
run: dotnet tool install -g --add-source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" Microsoft.dotnet-interactive | ||
|
||
- name: Install .NET Kernel | ||
if: matrix.os != 'windows-latest' | ||
shell: bash -l {0} | ||
run: dotnet interactive jupyter install | ||
|
||
|
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
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