File tree 4 files changed +60
-73
lines changed
4 files changed +60
-73
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Macos C/C++ CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ "master" ]
6
+ pull_request :
7
+ branches : [ "master" ]
8
+
9
+ jobs :
10
+ build-macos :
11
+ runs-on : macos-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+
15
+ - name : Install dependencies
16
+ run : |
17
+ brew update
18
+ brew install opencv cmake
19
+
20
+ - name : Configure CMake
21
+ run : |
22
+ mkdir -p build
23
+ cd build
24
+ cmake ..
25
+
26
+ - name : Build
27
+ working-directory : build
28
+ run : make
29
+
Original file line number Diff line number Diff line change
1
+ name : Ubuntu C/C++ CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ "master" ]
6
+ pull_request :
7
+ branches : [ "master" ]
8
+
9
+ jobs :
10
+ build-linux :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+
15
+ - name : Install dependencies
16
+ run : |
17
+ sudo apt-get update
18
+ sudo apt-get install -y libopencv-dev cmake g++
19
+
20
+ - name : Configure CMake
21
+ run : |
22
+ mkdir -p build
23
+ cd build
24
+ cmake ..
25
+
26
+ - name : Build
27
+ working-directory : build
28
+ run : make
29
+
Original file line number Diff line number Diff line change 1
- [ ![ Status] ( https://github.com/Smorodov/Multitarget-tracker/blob/master/.github/workflows/c-cpp.yml/badge.svg )] ( https://github.com/Smorodov/Multitarget-tracker/blob/master/.github/workflows/c-cpp.yml )
1
+ [ ![ Ubuntu] ( https://github.com/Smorodov/Multitarget-tracker/blob/master/.github/workflows/ubuntu.yml/badge.svg )] ( https://github.com/Smorodov/Multitarget-tracker/blob/master/.github/workflows/ubuntu.yml )
2
+ [ ![ MacOS] ( https://github.com/Smorodov/Multitarget-tracker/blob/master/.github/workflows/macos.yml/badge.svg )] ( https://github.com/Smorodov/Multitarget-tracker/blob/master/.github/workflows/macos.yml )
2
3
[ ![ CodeQL] ( https://github.com/Smorodov/Multitarget-tracker/blob/master/.github/workflows/codeql-analysis.yml/badge.svg )] ( https://github.com/Smorodov/Multitarget-tracker/blob/master/.github/workflows/codeql-analysis.yml )
3
4
4
5
# Last changes
You can’t perform that action at this time.
0 commit comments