File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,21 @@ on: [push, pull_request]
5
5
jobs :
6
6
build :
7
7
8
+ # FCS tests fail for netfx on macos/ubuntu, so we encode that here.
9
+ continue-on-error : ${{ matrix.knownFailure }}
10
+
8
11
strategy :
9
12
fail-fast : false
10
13
matrix :
11
14
os : [windows-latest, macos-latest, ubuntu-latest]
12
15
dotnet : [3.1.301] # TODO: wish this action didn't pin versions...
16
+ include :
17
+ - os : windows-latest
18
+ knownFailure : false
19
+ - os : macos-latest
20
+ knownFailure : true
21
+ - os : ubuntu-latest
22
+ knownFailure : true
13
23
runs-on : ${{ matrix.os }}
14
24
15
25
steps :
28
38
uses : actions/upload-artifact@v2
29
39
if : always()
30
40
with :
31
- name : code-coverage-report
41
+ name : code-coverage-report-${{ matrix.os }}-${{ env.GITHUB_SHA }}
32
42
path : ${{ github.workspace }}/artifacts/TestResults/Release/FSharp.Compiler.Service.Test.*.xml
You can’t perform that action at this time.
0 commit comments