Skip to content

Commit ff63863

Browse files
authored
Use macos-latest when possible
1 parent 89abbf8 commit ff63863

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
DotNetVersion4: "6.0.428"
77
DotNetVersion5: "6.0.203" # This is the last version Mono supports. It is used for our Mono CI tests.
88
NuGetVersion: "6.5.0"
9-
MonoVersion: "6.12.0"
9+
MonoVersion: ""
1010
Artifacts: ${{ github.workspace }}/artifacts/
1111
Coverage: ${{ github.workspace }}/coverage/
1212
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true"
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
os: [ubuntu-22.04, windows-latest, macos-13]
31+
os: [ubuntu-22.04, windows-latest, macos-latest]
3232
name: "Build"
3333
steps:
3434
- name: Checkout

.github/workflows/tests-net6.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
DotNetVersion4: "6.0.428"
77
DotNetVersion5: "6.0.203" # This is the last version Mono supports. It is used for our Mono CI tests.
88
NuGetVersion: "6.5.0"
9-
MonoVersion: "6.12.0"
9+
MonoVersion: ""
1010
Artifacts: ${{ github.workspace }}/artifacts/
1111
Coverage: ${{ github.workspace }}/coverage/
1212
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true"
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
os: [ubuntu-22.04, windows-latest, macos-13]
31+
os: [ubuntu-22.04, windows-latest, macos-latest]
3232
testProjects:
3333
- OmniSharp.MSBuild.Tests,OmniSharp.Roslyn.CSharp.Tests,OmniSharp.DotNetTest.Tests,OmniSharp.Cake.Tests
3434
- OmniSharp.Lsp.Tests,OmniSharp.Script.Tests,OmniSharp.Tests,OmniSharp.Stdio.Tests,OmniSharp.Http.Tests

azure-pipelines.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ variables:
2121
CakeVersion: "4.2.0"
2222
NuGetVersion: "6.5.0"
2323
GitVersionVersion: "5.0.1"
24-
MonoVersion: "6.12.0"
24+
MonoVersion: ""
2525
Coverage: "$(Agent.BuildDirectory)/c"
2626
VstsCoverage: "$(Coverage)"
2727
Artifacts: $(Build.SourcesDirectory)/artifacts/
@@ -91,7 +91,7 @@ stages:
9191

9292
- job: macOS
9393
pool:
94-
vmImage: "macos-13"
94+
vmImage: "macos-latest"
9595
dependsOn: GitVersion
9696
steps:
9797
- template: ./.pipelines/init.yml
@@ -100,7 +100,6 @@ stages:
100100
CakeVersion: $(CakeVersion)
101101
DotNetVersion: $(DotNetVersion)
102102
NuGetVersion: $(NuGetVersion)
103-
MonoVersion: $(MonoVersion)
104103
- script: |
105104
echo $PATH
106105
chmod 755 ./build.sh
@@ -123,7 +122,6 @@ stages:
123122
CakeVersion: $(CakeVersion)
124123
DotNetVersion: $(DotNetVersion)
125124
NuGetVersion: $(NuGetVersion)
126-
MonoVersion: $(MonoVersion)
127125
- script: |
128126
chmod 755 ./build.sh
129127
./build.sh --configuration Release --verbosity Verbose --target CI --publish-all --archive

0 commit comments

Comments
 (0)