ci: add mac os to github ci (#51)

* ci: add mac os to ci

* ci: add appveyor file
This commit is contained in:
Carlos Gomes Martinho
2020-02-19 17:48:36 +01:00
committed by GitHub
parent 7fe81c65c8
commit 5d4358030a
3 changed files with 13 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
configuration: Release
image:
- Visual Studio 2019
- Ubuntu
- macOS
build_script:
- cmake .
- cmake --build . --config %CONFIGURATION%
+1 -2
View File
@@ -12,8 +12,7 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
os: [windows-latest, ubuntu-latest] os: [windows-latest, ubuntu-latest, macOS-latest]
# os: [windows-latest, ubuntu-latest, macOS-latest]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
+2 -1
View File
@@ -22,11 +22,12 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* *
*********************************************************************/ *********************************************************************/
#include <limits.h>
#include <stdio.h> #include <stdio.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <time.h> #include <time.h>
#include "mstimer.h" #include "bacnet/basic/sys/mstimer.h"
#include <mach/clock.h> #include <mach/clock.h>
#include <mach/mach.h> #include <mach/mach.h>