Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
359 lines
11 KiB
359 lines
11 KiB
name: Change tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
schedule:
|
|
- cron: "12 3 * * *"
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
fmt:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: rustup update && rustup component add rustfmt
|
|
- run: cargo fmt -- --check
|
|
|
|
clippy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update && rustup component add clippy
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo clippy
|
|
working-directory: ./lib/oxsdatatypes
|
|
- run: cargo clippy
|
|
working-directory: ./lib/oxrdf
|
|
- run: cargo clippy
|
|
working-directory: ./lib/sparesults
|
|
- run: cargo clippy
|
|
working-directory: ./lib/spargebra
|
|
- run: cargo clippy --all-targets --all-features
|
|
|
|
clippy_wasm_js:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update && rustup target add wasm32-unknown-unknown && rustup component add clippy
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo clippy --lib --tests --target wasm32-unknown-unknown
|
|
working-directory: ./js
|
|
|
|
clippy_wasi:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update && rustup target add wasm32-wasi && rustup component add clippy
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo clippy --lib --tests --target wasm32-wasi
|
|
working-directory: ./lib
|
|
|
|
clippy_msv:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update && rustup override set 1.60.0 && rustup component add clippy
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo clippy -- -D warnings -D clippy::all
|
|
working-directory: ./lib/oxsdatatypes
|
|
- run: cargo clippy -- -D warnings -D clippy::all
|
|
working-directory: ./lib/oxrdf
|
|
- run: cargo clippy -- -D warnings -D clippy::all
|
|
working-directory: ./lib/sparesults
|
|
- run: cargo clippy -- -D warnings -D clippy::all
|
|
working-directory: ./lib/spargebra
|
|
- run: cargo clippy --all-targets -- -D warnings -D clippy::all
|
|
working-directory: ./server
|
|
|
|
clippy_msv_wasm_js:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update && rustup override set 1.60.0 && rustup target add wasm32-unknown-unknown && rustup component add clippy
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo clippy --lib --tests --target wasm32-unknown-unknown -- -D warnings -D clippy::all
|
|
working-directory: ./js
|
|
|
|
clippy_msv_wasi:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update && rustup override set 1.60.0 && rustup target add wasm32-wasi && rustup component add clippy
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo clippy --lib --tests --target wasm32-wasi -- -D warnings -D clippy::all
|
|
working-directory: ./lib
|
|
|
|
deny:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: rustup update
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo install cargo-deny || true
|
|
- run: cargo deny check
|
|
|
|
semver_checks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo install cargo-semver-checks || true
|
|
- run: cargo semver-checks check-release --exclude oxrocksdb-sys --exclude oxigraph_js --exclude pyoxigraph --exclude oxigraph_testsuite --exclude oxigraph_server
|
|
|
|
test_linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo test --all-features
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
|
|
address_sanitizer:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update && rustup override set nightly
|
|
- run: sudo apt install -y llvm
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo test --tests --target x86_64-unknown-linux-gnu --workspace --exclude pyoxigraph --exclude oxigraph_testsuite --exclude oxigraph_server
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
RUSTFLAGS: -Z sanitizer=address
|
|
|
|
test_windows:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: Remove-Item -LiteralPath "C:\msys64\" -Force -Recurse
|
|
- run: cargo test --all-features
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
|
|
test_wasi:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update && rustup target add wasm32-wasi
|
|
- uses: Swatinem/rust-cache@v2
|
|
- uses: taiki-e/install-action@wasmtime
|
|
- run: cargo install cargo-wasi || true
|
|
- run: cargo wasi test --workspace --exclude oxigraph_js --exclude oxigraph_server --exclude oxigraph_testsuite --exclude oxrocksdb-sys --exclude pyoxigraph
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
|
|
rustdoc:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo doc --all-features
|
|
working-directory: ./lib
|
|
|
|
rustdoc_msrv:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update && rustup override set 1.60.0
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo doc --all-features
|
|
working-directory: ./lib
|
|
env:
|
|
RUSTDOCFLAGS: -D warnings
|
|
|
|
js:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: rustup update
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo install wasm-pack || true
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
cache: npm
|
|
cache-dependency-path: "js/package.json"
|
|
- run: npm install
|
|
working-directory: ./js
|
|
- run: npm test
|
|
working-directory: ./js
|
|
|
|
python:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update
|
|
- uses: Swatinem/rust-cache@v2
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
cache: pip
|
|
cache-dependency-path: '**/requirements.dev.txt'
|
|
- run: pip install -r python/requirements.dev.txt
|
|
- run: python -m black --check --diff --color .
|
|
working-directory: ./python
|
|
- run: maturin build -m python/Cargo.toml
|
|
- run: pip install --no-index --find-links=target/wheels/ pyoxigraph
|
|
- run: rm -r target/wheels
|
|
- run: python -m unittest
|
|
working-directory: ./python/tests
|
|
- run: sphinx-build -M doctest . build
|
|
working-directory: ./python/docs
|
|
- run: sphinx-build -M html . build
|
|
working-directory: ./python/docs
|
|
- run: python generate_stubs.py pyoxigraph pyoxigraph.pyi --black
|
|
working-directory: ./python
|
|
- run: python -m mypy.stubtest pyoxigraph --allowlist=mypy_allowlist.txt
|
|
working-directory: ./python
|
|
- run: python -m mypy generate_stubs.py tests --strict
|
|
working-directory: ./python
|
|
|
|
python_msv:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- run: rustup update
|
|
- uses: Swatinem/rust-cache@v2
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.7"
|
|
cache: pip
|
|
cache-dependency-path: '**/requirements.dev.txt'
|
|
- run: pip install -r python/requirements.dev.txt
|
|
- run: maturin build -m python/Cargo.toml
|
|
- run: pip install --no-index --find-links=target/wheels/ pyoxigraph
|
|
- run: rm -r target/wheels
|
|
- run: python -m unittest
|
|
working-directory: ./python/tests
|
|
|
|
typos:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo install typos-cli || true
|
|
- run: typos
|
|
|
|
clang_fmt:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: sudo apt install -y clang-format
|
|
- run: clang-format --Werror --dry-run oxrocksdb-sys/api/*
|
|
|
|
fuzz_changes:
|
|
if: github.event_name == 'pull_request'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- uses: google/clusterfuzzlite/actions/build_fuzzers@v1
|
|
with:
|
|
language: rust
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
sanitizer: address
|
|
storage-repo: https://${{ secrets.FULL_ACCESS_TOKEN }}@github.com/oxigraph/clusterfuzzlite-oxigraph.git
|
|
- uses: google/clusterfuzzlite/actions/run_fuzzers@v1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
fuzz-seconds: 600
|
|
mode: 'code-change'
|
|
sanitizer: address
|
|
storage-repo: https://${{ secrets.FULL_ACCESS_TOKEN }}@github.com/oxigraph/clusterfuzzlite-oxigraph.git
|
|
|
|
fuzz_repo:
|
|
if: github.event_name != 'pull_request'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- uses: google/clusterfuzzlite/actions/build_fuzzers@v1
|
|
with:
|
|
language: rust
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
sanitizer: address
|
|
- uses: google/clusterfuzzlite/actions/run_fuzzers@v1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
fuzz-seconds: 3600
|
|
mode: 'batch'
|
|
sanitizer: address
|
|
storage-repo: https://${{ secrets.FULL_ACCESS_TOKEN }}@github.com/oxigraph/clusterfuzzlite-oxigraph.git
|
|
|
|
fuzz_prune:
|
|
if: github.event_name != 'pull_request'
|
|
needs: fuzz_repo
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- uses: google/clusterfuzzlite/actions/build_fuzzers@v1
|
|
with:
|
|
language: rust
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: google/clusterfuzzlite/actions/run_fuzzers@v1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
fuzz-seconds: 14400
|
|
mode: 'prune'
|
|
storage-repo: https://${{ secrets.FULL_ACCESS_TOKEN }}@github.com/oxigraph/clusterfuzzlite-oxigraph.git
|
|
|
|
fuzz_coverage:
|
|
if: github.event_name != 'pull_request'
|
|
needs: fuzz_prune
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: google/clusterfuzzlite/actions/build_fuzzers@v1
|
|
with:
|
|
language: rust
|
|
sanitizer: coverage
|
|
- uses: google/clusterfuzzlite/actions/run_fuzzers@v1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
fuzz-seconds: 600
|
|
mode: 'coverage'
|
|
sanitizer: 'coverage'
|
|
storage-repo: https://${{ secrets.FULL_ACCESS_TOKEN }}@github.com/oxigraph/clusterfuzzlite-oxigraph.git
|
|
|