-
Notifications
You must be signed in to change notification settings - Fork 103
76 lines (63 loc) · 1.75 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
on:
push:
branches:
- "master"
pull_request:
name: "Build feature combinations"
jobs:
feature-powerset:
name: "Build ${{ matrix.package }} features"
runs-on: "ubuntu-latest"
strategy:
matrix:
package:
- "starknet-curve"
- "starknet-crypto"
- "starknet-core"
- "starknet-providers"
- "starknet-signers"
- "starknet-accounts"
- "starknet-contract"
- "starknet-macros"
- "starknet"
steps:
- name: "Checkout source code"
uses: "actions/checkout@v3"
- name: "Setup stable toolchain"
uses: "actions-rs/toolchain@v1"
with:
toolchain: "stable"
profile: "minimal"
override: true
- name: "Use Rust cache"
uses: "Swatinem/rust-cache@v2"
with:
cache-on-failure: true
- name: "Install cargo-hack"
run: |
cargo install --locked cargo-hack
- name: "Build all feature combinations"
run: |
cargo hack build --package ${{ matrix.package }} --feature-powerset
cpp-integration:
name: "Build C++ integration example"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout source code"
uses: "actions/checkout@v3"
- name: "Setup stable toolchain"
uses: "actions-rs/toolchain@v1"
with:
toolchain: "stable"
profile: "minimal"
override: true
- name: "Build starknet-cxx example"
run: |
cd ./examples/starknet-cxx
mkdir build
cd ./build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
- name: "Run starknet-cxx example"
run: |
./examples/starknet-cxx/build/main