Skip to content

feat: Implement Test Runner workflow for Windows #417

feat: Implement Test Runner workflow for Windows

feat: Implement Test Runner workflow for Windows #417

Workflow file for this run

name: Integration Test
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
workflow_dispatch:
permissions:
contents: read
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install protobuf compiler
run: |
sudo apt install -y protobuf-compiler
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build Test for feature
run: |
git submodule update --init
cargo build --features "heed_storage"
cargo build --features "heed_storage, tls"
cargo build --features "rocksdb_storage, tls"
cargo build --features "inmemory_storage, tls"
- name: Build and Check Rust unit tests and harness tests all pass
run: |
git submodule update --init
make build
make unit-test
make integration-test
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.11.4"
- name: Build and Check Python harness tests all pass
run: |
cd ./binding/python
pip3 install -r requirements.txt
make install
cd ./tests
pip3 install -r requirements.txt
make test
cd ../../
- name: Lint Rust codes
run: |
cargo clippy
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies on Windows
run: |
choco install protoc
rustup install stable
rustup default stable
- name: Build and Check Rust unit tests and harness tests all pass on Windows
run: |
git submodule update --init
make build
make unit-test
make integration-test
- name: Set up Python on Windows
uses: actions/setup-python@v3
with:
python-version: "3.11.4"
- name: Build and Check Python harness tests all pass on Windows
run: |
cd ./binding/python
pip install -r requirements.txt
python setup.py install
cd ./tests
pip install -r requirements.txt
pytest
cd ../../
- name: Lint Rust codes on Windows
run: |
cargo clippy