We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 184d6c5 commit 3af0361Copy full SHA for 3af0361
.github/workflows/build.yml
@@ -5,11 +5,19 @@ on: [push, pull_request]
5
jobs:
6
build:
7
8
+ # FCS tests fail for netfx on macos/ubuntu, so we encode that here.
9
+ continue-on-error: ${{ matrix.knownFailure }}
10
+
11
strategy:
12
fail-fast: false
13
matrix:
14
os: [windows-latest, macos-latest, ubuntu-latest]
15
dotnet: [3.1.301] # TODO: wish this action didn't pin versions...
16
+ include:
17
+ - os: macos-latest
18
+ knownFailure: true
19
+ - os: ubuntu-latest
20
21
runs-on: ${{ matrix.os }}
22
23
steps:
@@ -28,5 +36,5 @@ jobs:
28
36
uses: actions/upload-artifact@v2
29
37
if: always()
30
38
with:
31
- name: code-coverage-report
39
+ name: code-coverage-report-${{ matrix.os }}-${{ env.GITHUB_SHA }}
32
40
path: ${{ github.workspace }}/artifacts/TestResults/Release/FSharp.Compiler.Service.Test.*.xml
0 commit comments