Add new property to mark the initial size for the new region. #1636
Workflow file for this run
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
name: Rust Test | |
on: | |
push: | |
branches: | |
- master | |
- release-6.0 | |
- release-5.0 | |
- release-4.0 | |
- release-3.0 | |
pull_request: | |
branches: | |
- master | |
- release-6.0 | |
- release-5.0 | |
- release-4.0 | |
- release-3.0 | |
jobs: | |
rust-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies (LLVM and compilers) | |
run: sudo apt install -y cmake clang libclang-dev llvm llvm-dev | |
- name: Install dependencies (protocol buffers compiler) | |
uses: arduino/setup-protoc@v1 | |
with: | |
version: '3.8.0' | |
- name: Test Rust | |
env: | |
RUST_TEST_THREADS: "1" | |
RUST_BACKTRACE: "1" | |
RUSTFLAGS: "-Dwarnings" | |
CPLUS_INCLUDE_PATH: "/usr/lib/gcc/x86_64-linux-gnu/6/include" | |
run: make rust |