blob: 304650dda881945ea669e9e5a32e9d6c6b0dfc49 [file] [log] [blame]
# This is a basic workflow to help you get started with Actions
name: CI
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
workflow_dispatch:
jobs:
check:
name: check dubbo-rust project
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- uses: actions/checkout@main
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: setup protoc
run: |
mkdir $HOME/protoc/ -p &&
cd $HOME/protoc/ &&
curl --location --silent --output /tmp/protoc-21.9-linux-x86_64.zip \
https://github.com/protocolbuffers/protobuf/releases/download/v21.9/protoc-21.9-linux-x86_64.zip &&
unzip /tmp/protoc-21.9-linux-x86_64.zip &&
echo "$HOME/protoc/bin" >> $GITHUB_PATH
shell: bash
- run: cargo check
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
example-greeter:
name: example/greeter
runs-on: ubuntu-latest
services:
zoo1:
image: zookeeper:3.8
ports:
- 2181:2181
env:
ZOO_MY_ID: 1
steps:
- uses: actions/checkout@main
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: setup protoc
run: |
mkdir $HOME/protoc/ -p &&
cd $HOME/protoc/ &&
curl --location --silent --output /tmp/protoc-21.9-linux-x86_64.zip \
https://github.com/protocolbuffers/protobuf/releases/download/v21.9/protoc-21.9-linux-x86_64.zip &&
unzip /tmp/protoc-21.9-linux-x86_64.zip &&
echo "$HOME/protoc/bin" >> $GITHUB_PATH
shell: bash
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- run: cargo build
working-directory: examples/greeter
- name: example greeter
run: |
../../target/debug/greeter-server &
sleep 3
../../target/debug/greeter-client
env:
ZOOKEEPER_SERVERS: 127.0.0.1:2181
DUBBO_CONFIG_PATH: ./dubbo.yaml
working-directory: examples/greeter