Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
bb55ac8
add "macos-latest" to build matrix
antonfirsov Aug 3, 2020
5d4cf9e
try installing "mono-libgdiplus"
antonfirsov Aug 3, 2020
525fdbd
add "shell: bash"
antonfirsov Aug 3, 2020
0f076c8
try 'macos-10.15'
antonfirsov Aug 3, 2020
f087dee
try ${{matrix.options.os}}
antonfirsov Aug 3, 2020
921aa06
next hack to try
antonfirsov Aug 3, 2020
ff14733
if: startsWith(matrix.options.os, 'macos')
antonfirsov Aug 3, 2020
95dfbd0
Merge remote-tracking branch 'origin/af/macos-ci' into af/macos-libgd…
AlexNDRmac Oct 26, 2020
eb7e80f
Add Nuget cache, improve build matrix
AlexNDRmac Oct 26, 2020
fe06e3b
Add support using libgdiplus on macOS
AlexNDRmac Oct 26, 2020
e587161
Fix incompatible package reference for OSX
AlexNDRmac Oct 26, 2020
8527b2c
Revert syntax for workflow, move osx package to build targets
AlexNDRmac Oct 27, 2020
902fbaa
Remove setup netcore action
AlexNDRmac Oct 28, 2020
3fc0b60
Disable nuget packages cache
AlexNDRmac Oct 28, 2020
734aca2
Do not run windows specific tests on macOS
AlexNDRmac Oct 30, 2020
a4bf8b7
Decorate OSX specific tests
AlexNDRmac Oct 30, 2020
9e27be8
Merge branch 'master' into af/macos-libgdiplus-fix
JimBobSquarePants Oct 30, 2020
c06de77
Enable nuget cache, rework redundant shell for all steps
AlexNDRmac Nov 2, 2020
fd7a759
Declare powershell in unix way
AlexNDRmac Nov 2, 2020
2855437
Save actual output of Images for failed CI runs
AlexNDRmac Nov 6, 2020
2af8cba
Merge branch 'master' into af/macos-libgdiplus-fix
JimBobSquarePants Nov 6, 2020
0b35db8
Merge branch 'master' into af/macos-libgdiplus-fix
antonfirsov Nov 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Do not run windows specific tests on macOS
  • Loading branch information
AlexNDRmac committed Oct 30, 2020
commit 734aca29adee1c4e3514f5ea545d467caaeab1fc
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void GetReferenceOutputFileName()
[InlineData("lol/Baz.gif", typeof(GifEncoder))]
public void GetReferenceEncoder_ReturnsCorrectEncoders_Windows(string fileName, Type expectedEncoderType)
{
if (TestEnvironment.IsLinux)
if (!TestEnvironment.IsWindows)
{
return;
}
Expand All @@ -83,7 +83,7 @@ public void GetReferenceEncoder_ReturnsCorrectEncoders_Windows(string fileName,
[InlineData("lol/Baz.gif", typeof(GifDecoder))]
public void GetReferenceDecoder_ReturnsCorrectDecoders_Windows(string fileName, Type expectedDecoderType)
{
if (TestEnvironment.IsLinux)
if (!TestEnvironment.IsWindows)
{
return;
}
Expand Down