-
Notifications
You must be signed in to change notification settings - Fork 70
46 lines (38 loc) · 975 Bytes
/
ci-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CI
on:
push
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Set up dependencies for Linux
if: runner.os == 'Linux'
run: |
sudo apt-get update -qq
sudo apt-get install -qq cmake build-essential clang
- name: Set up dependencies for macOS
if: runner.os == 'macOS'
run: |
brew update
brew upgrade cmake
- name: Display versions
run: |
gcc -v
g++ -v
cmake --version
- name: set env variables
if: runner.os == 'macOS'
run: |
echo "C_INCLUDE_PATH=/usr/local/include" >> $GITHUB_ENV
echo "CPLUS_INCLUDE_PATH=/usr/local/include" >> $GITHUB_ENV
- name: Build
run: |
cmake ./
make