-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,7 +121,7 @@ jobs: | |
find . -type f -name "*.fsx" | xargs -t -I {} dotnet fsxc {} | ||
windows--legacyFramework: | ||
windows--legacyFramework-only: | ||
runs-on: windows-2019 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
@@ -144,6 +144,42 @@ jobs: | |
- name: integration tests | ||
run: .\make update-servers | ||
|
||
windows--dotnet6-only: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
with: | ||
submodules: false | ||
- name: Setup .NET SDK 6.0.x | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '6.0.113' | ||
- name: HACK to emulate legacy .NETFramework uninstall | ||
run: del $("%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -find MSBuild\\**\\Bin\\MSBuild.exe) | ||
- name: configure | ||
run: .\configure.bat | ||
- name: build in DEBUG mode | ||
run: .\make.bat | ||
- name: sanity check | ||
run: .\make.bat sanitycheck | ||
- name: unit tests | ||
run: .\make.bat check | ||
- name: re-build in STRICT mode | ||
run: git clean -fdx && .\configure.bat && .\make.bat strict | ||
- name: re-build in RELEASE mode | ||
run: git clean -fdx && .\configure.bat && .\make.bat release | ||
- name: integration tests | ||
run: .\make update-servers | ||
- name: compile .fsx scripts | ||
shell: bash | ||
run: | | ||
dotnet new tool-manifest | ||
# we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037 | ||
dotnet tool install fsxc --version 0.5.9.1 | ||
find . -type f -name "*.fsx" | xargs -t -I {} dotnet fsxc {} | ||
linux22-github: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
|
@@ -540,7 +576,8 @@ jobs: | |
- linux20-vanilla--stockmono | ||
- linux20-vanilla--newmono | ||
- windows--dotnet6 | ||
- windows--legacyFramework | ||
- windows--legacyFramework-only | ||
- windows--dotnet6-only | ||
- macOS--dotnet6-and-mono | ||
- macOS--mono-only | ||
- macOS--dotnet-only | ||
|