-
Notifications
You must be signed in to change notification settings - Fork 3
50 lines (45 loc) · 1.1 KB
/
ci-build.yaml
File metadata and controls
50 lines (45 loc) · 1.1 KB
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
47
48
49
50
name: CI build
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
protolint:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Run protolint
uses: plexsystems/protolint-action@v0.4.0
with:
configDirectory: .
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libprotobuf-dev protobuf-compiler
- name: Build
run: >
mkdir build
&& cd build
&& cmake ..
&& make all
build-macos:
runs-on: macos-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Install dependencies
run: |
brew update
brew install protobuf
- name: Build
run: >
mkdir build
&& cd build
&& cmake ..
&& make all