File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1313 strategy :
1414 fail-fast : false
1515 matrix :
16- os : [windows-2022 , ubuntu-22.04 , macOS-12 ]
16+ os : [windows-latest , ubuntu-latest , macOS-latest ]
1717 steps :
1818 - name : Clone source
1919 uses : actions/checkout@v4
3131 - name : Get .NET information
3232 run : dotnet --info
3333
34+ - name : Install Mono
35+ run : >
36+ sudo apt-get -y install apt-transport-https dirmngr gnupg ca-certificates software-properties-common &&
37+ curl 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3fa7e0328081bff6a14da29aa6a19b38d3d831ef' | sudo tee /etc/apt/trusted.gpg.d/mono-official-stable.asc &&
38+ sudo apt-add-repository -y --no-update 'deb https://download.mono-project.com/repo/ubuntu stable-focal main' &&
39+ sudo apt update &&
40+ sudo apt-get -y install mono-complete mono-vbnc
41+ if : ${{ matrix.os == 'ubuntu-latest' }}
42+
3443 - name : Get Mono information
3544 run : mono --version
36- if : ${{ matrix.os != 'windows-2022 ' }}
45+ if : ${{ matrix.os != 'windows-latest ' }}
3746
3847 - name : " Build target: BuildAll"
3948 run : dotnet run --project tools/builder --no-launch-profile -- BuildAll
Original file line number Diff line number Diff line change 99jobs :
1010 build :
1111 name : " Build"
12- runs-on : windows-2022
12+ runs-on : windows-latest
1313 env :
1414 DOTNET_CLI_WORKLOAD_UPDATE_NOTIFY_DISABLE : true
1515 DOTNET_NOLOGO : true
You can’t perform that action at this time.
0 commit comments