ci: remove cargo-udeps workflow (#673) #674
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |