File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 5
5
- main
6
6
pull_request :
7
7
jobs :
8
- build_windows :
9
- runs-on : [windows-latest]
8
+ build :
9
+ strategy :
10
+ matrix :
11
+ os : [windows-latest, ubuntu-latest]
10
12
env :
11
13
DEPOT_TOOLS_WIN_TOOLCHAIN : 0
14
+ continue-on-error : true
15
+ runs-on : ${{ matrix.os }}
12
16
steps :
13
17
- uses : actions/checkout@v3
14
18
- uses : dart-lang/setup-dart@v1
20
24
21
25
- name : Build Shared Library
22
26
run : cmake --build build --config release
27
+ - name : ' Upload Artifact'
28
+ uses : actions/upload-artifact@v3
29
+ with :
30
+ name : libs
31
+ path : ./build/src/Release/
32
+
Original file line number Diff line number Diff line change 4
4
"**/.DS_Store" : true , // this is a default value
5
5
6
6
"dart-sdk/" : true
7
- }
7
+ },
8
+ "dart.analysisExcludedFolders" : [
9
+ " dart-sdk"
10
+ ]
8
11
}
You canβt perform that action at this time.
0 commit comments