File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ 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
-
11
8
strategy :
12
9
fail-fast : false
13
10
matrix :
31
28
- name : Restore tools
32
29
run : dotnet tool restore
33
30
working-directory : ./fcs
34
- - name : Build and test
35
- run : dotnet fake build -t TestAndNuGet
31
+ - name : Build
32
+ run : dotnet fake build -t Build
33
+ working-directory : ./fcs
34
+ - name : Test
35
+ run : dotnet fake build -s -t Test
36
36
working-directory : ./fcs
37
+ if : ${{ !matrix.knownFailure }}
37
38
- name : Archive code coverage results
38
39
uses : actions/upload-artifact@v2
39
40
if : always()
Original file line number Diff line number Diff line change 23
23
- name : Restore tools
24
24
run : dotnet tool restore
25
25
working-directory : ./fcs
26
- - name : Build and Test
27
- run : dotnet fake build -t TestAndNuget
26
+ - name : Build and package
27
+ run : dotnet fake build -t NuGet
28
28
working-directory : ./fcs
29
29
- name : Validate package bump
30
30
run : dotnet fake build -s -t ValidateVersionBump
You can’t perform that action at this time.
0 commit comments