File tree 5 files changed +33
-27
lines changed
5 files changed +33
-27
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+ on : [push, pull_request]
3
+ env :
4
+ BUILD_TYPE : Release
5
+ jobs :
6
+ build :
7
+ runs-on : ${{ matrix.os }}
8
+ strategy :
9
+ matrix :
10
+ os :
11
+ - ubuntu-20.04
12
+ - ubuntu-18.04
13
+ - ubuntu-16.04
14
+ - macos-latest
15
+ - windows-latest
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ with :
19
+ submodules : true
20
+
21
+ - name : Configure
22
+ shell : bash
23
+ run : |
24
+ cmake -E make_directory $GITHUB_WORKSPACE/build
25
+ cmake -B $GITHUB_WORKSPACE/build -S $GITHUB_WORKSPACE \
26
+ -DCMAKE_BUILD_TYPE=$BUILD_TYPE
27
+
28
+ - name : Build
29
+ shell : bash
30
+ run : |
31
+ cmake --build $GITHUB_WORKSPACE/build -j4 --target install
Original file line number Diff line number Diff line change 1
- build *
1
+ build * /
2
2
install
3
3
* ~
4
4
/doc /latex
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Simple Open EtherCAT Master Library
2
- [ ![ Build Status] ( https://travis-ci.org/OpenEtherCATsociety/SOEM.svg?branch=master )] ( https://travis-ci.org/OpenEtherCATsociety/SOEM )
3
- [ ![ Build status] ( https://ci.appveyor.com/api/projects/status/bqgirjsxog9k1odf?svg=true )] ( https://ci.appveyor.com/project/hefloryd/soem-5kq8b )
2
+ [ ![ Build Status] ( https://github.com/OpenEtherCATsociety/SOEM/workflows/build/badge.svg?branch=master )] ( https://github.com/OpenEtherCATsociety/SOEM/actions?workflow=build )
4
3
5
4
BUILDING
6
5
========
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments