File tree Expand file tree Collapse file tree 4 files changed +56
-3
lines changed Expand file tree Collapse file tree 4 files changed +56
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Linux
2
+
3
+ on :
4
+ push :
5
+ paths-ignore :
6
+ - ' README.md'
7
+ - ' docs/'
8
+ pull_request :
9
+ paths-ignore :
10
+ - ' README.md'
11
+ - ' docs/'
12
+
13
+ jobs :
14
+ build :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - name : Checkout
18
+ uses : actions/checkout@v4
19
+ - name : Install Dotnet
20
+ uses : actions/setup-dotnet@v4
21
+ with :
22
+ global-json-file : global.json
23
+ - name : Build
24
+ run : sh ./build.sh
Original file line number Diff line number Diff line change
1
+ name : MacOS
2
+
3
+ on :
4
+ push :
5
+ paths-ignore :
6
+ - ' README.md'
7
+ - ' docs/'
8
+ pull_request :
9
+ paths-ignore :
10
+ - ' README.md'
11
+ - ' docs/'
12
+
13
+ jobs :
14
+ build :
15
+ runs-on : macos-latest
16
+ steps :
17
+ - name : Checkout
18
+ uses : actions/checkout@v4
19
+ - name : Install Dotnet
20
+ uses : actions/setup-dotnet@v4
21
+ with :
22
+ global-json-file : global.json
23
+ - name : Build
24
+ run : bash ./build.sh
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Publish
2
2
on :
3
3
push :
4
4
branches :
5
- - test
5
+ - master
6
6
paths :
7
7
- RELEASE_NOTES.md
8
8
- .github/workflows/publish.yml
23
23
run : dotnet paket restore
24
24
- name : Build
25
25
shell : cmd
26
- run : dotnet build -c Release src\Aardvark.sln
26
+ run : dotnet build -c Release src\Aardvark.OpenCV. sln
27
27
- name : Test
28
- run : dotnet test src\Aardvark.sln -c Release --no-build --nologo --logger:"console;verbosity=normal"
28
+ run : dotnet test src\Aardvark.OpenCV. sln -c Release --no-build --nologo --logger:"console;verbosity=normal"
29
29
- name : Pack
30
30
env :
31
31
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ dotnet tool restore
4
+ dotnet paket restore
5
+ dotnet build src/Aardvark.OpenCV.sln
You can’t perform that action at this time.
0 commit comments