Skip to content

[ALL CHANGES] Fix enc #247

[ALL CHANGES] Fix enc

[ALL CHANGES] Fix enc #247

name: jobs-linux-other-checks
on: [pull_request]
jobs:
build-linux-clang10-clang-analyze:
runs-on: ubuntu-latest
container:
image: zjay437/rocksdb:0.6
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/pre-steps"
- run: CC=clang-10 CXX=clang++-10 ROCKSDB_DISABLE_ALIGNED_NEW=1 CLANG_ANALYZER="/usr/bin/clang++-10" CLANG_SCAN_BUILD=scan-build-10 USE_CLANG=1 make V=1 -j4 analyze
- uses: "./.github/actions/post-steps"
- name: compress test report
run: tar -cvzf scan_build_report.tar.gz scan_build_report
if: failure()
- uses: actions/[email protected]
with:
path: scan_build_report.tar.gz
build-linux-unity-and-headers:
runs-on: ubuntu-latest
container:
image: gcc:latest
env:
EXTRA_CXXFLAGS: "-mno-avx512f"
steps:
- uses: actions/[email protected]
- run: apt-get update -y && apt-get install -y libgflags-dev
- name: Unity build
run: make V=1 -j4 unity_test
- run: make V=1 -j4 -k check-headers
- uses: "./.github/actions/post-steps"
build-linux-mini-crashtest:
runs-on: ubuntu-latest
container:
image: zjay437/rocksdb:0.6
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/pre-steps"
- run: ulimit -S -n `ulimit -H -n` && make V=1 -j4 CRASH_TEST_EXT_ARGS='--duration=30 --max_key=2500 --use_io_uring=0' blackbox_crash_test_with_atomic_flush
- uses: "./.github/actions/post-steps"