-
Notifications
You must be signed in to change notification settings - Fork 58
79 lines (65 loc) · 1.91 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: build
on:
pull_request:
branches: [ master ]
env:
CI: true
jobs:
build:
name: build
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
submodules: true
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-02-01
override: true
components: rust-src, rustfmt
- uses: Swatinem/rust-cache@v2
- name: check formatting
shell: bash
run: |
cargo fmt --check
- name: set up codegen dependencies
shell: bash
run: |
mkdir proto
(
cd proto
wget "https://github.com/protocolbuffers/protobuf/releases/download/v27.2/protoc-27.2-linux-x86_64.zip" -O protoc.zip
unzip protoc.zip
chmod +x bin/protoc
mv bin/protoc /usr/local/bin/
)
protoc --version
mkdir flatbuffers
(
cd flatbuffers
wget "https://github.com/google/flatbuffers/releases/download/v24.3.25/Linux.flatc.binary.clang++-15.zip" -O flatbuffers.zip
unzip flatbuffers.zip
chmod +x ./flatc
mv ./flatc /usr/local/bin
)
flatc --version
wget "https://capnproto.org/capnproto-c++-1.0.2.tar.gz" -O capnproto.tar.gz
tar zxf capnproto.tar.gz
(
cd capnproto-c++-1.0.2
./configure
sudo make -j install
)
capnp --version
- name: build
shell: bash
run: |
cargo build --benches --features regenerate-capnp,regenerate-flatbuffers,regenerate-prost
- name: check generated code
shell: bash
run: |
git diff --exit-code && echo 'ok!' || (echo 'committed generated code is not up to date!'; exit 1)