mirror of
https://github.com/facebook/rocksdb.git
synced 2024-12-02 10:15:54 +00:00
c165394439
Summary: This pull request converts the CircleCI jobs that run on ARM runners to GitHub actions jobs. With this change you can retire the [circleci config](https://github.com/facebook/rocksdb/blob/main/.circleci/config.yml) for this repo. This change assumes you have [ARM runners](https://github.blog/changelog/2023-10-30-accelerate-your-ci-cd-with-arm-based-hosted-runners-in-github-actions/) with the label `4-core-ubuntu-arm`. --- [Here is a workflow run in my fork showing these jobs passing](https://github.com/robandpdx-org/rocksdb/actions/runs/8760406181/job/24045304383). --- https://fburl.com/workplace/f6mz6tmw Pull Request resolved: https://github.com/facebook/rocksdb/pull/12569 Reviewed By: ltamasi Differential Revision: D56435439 Pulled By: ajkr fbshipit-source-id: a24d79f21baca01beda232746f90b2853f27a664
109 lines
3.4 KiB
YAML
109 lines
3.4 KiB
YAML
name: facebook/rocksdb/nightly
|
|
on:
|
|
schedule:
|
|
- cron: 0 9 * * *
|
|
workflow_dispatch:
|
|
jobs:
|
|
build-format-compatible:
|
|
if: ${{ github.repository_owner == 'facebook' }}
|
|
runs-on:
|
|
labels: 16-core-ubuntu
|
|
container:
|
|
image: zjay437/rocksdb:0.6
|
|
options: --shm-size=16gb
|
|
steps:
|
|
- uses: actions/checkout@v4.1.0
|
|
with:
|
|
fetch-depth: 0 # Need full repo history
|
|
fetch-tags: true
|
|
- uses: "./.github/actions/setup-upstream"
|
|
- uses: "./.github/actions/pre-steps"
|
|
- name: test
|
|
run: |-
|
|
export TEST_TMPDIR=/dev/shm/rocksdb
|
|
rm -rf /dev/shm/rocksdb
|
|
mkdir /dev/shm/rocksdb
|
|
git config --global --add safe.directory /__w/rocksdb/rocksdb
|
|
tools/check_format_compatible.sh
|
|
- uses: "./.github/actions/post-steps"
|
|
build-linux-run-microbench:
|
|
if: ${{ github.repository_owner == 'facebook' }}
|
|
runs-on:
|
|
labels: 16-core-ubuntu
|
|
container:
|
|
image: zjay437/rocksdb:0.6
|
|
options: --shm-size=16gb
|
|
steps:
|
|
- uses: actions/checkout@v4.1.0
|
|
- uses: "./.github/actions/pre-steps"
|
|
- run: DEBUG_LEVEL=0 make -j32 run_microbench
|
|
- uses: "./.github/actions/post-steps"
|
|
build-linux-non-shm:
|
|
if: ${{ github.repository_owner == 'facebook' }}
|
|
runs-on:
|
|
labels: 16-core-ubuntu
|
|
container:
|
|
image: zjay437/rocksdb:0.6
|
|
options: --shm-size=16gb
|
|
env:
|
|
TEST_TMPDIR: "/tmp/rocksdb_test_tmp"
|
|
steps:
|
|
- uses: actions/checkout@v4.1.0
|
|
- uses: "./.github/actions/pre-steps"
|
|
- run: make V=1 -j32 check
|
|
- uses: "./.github/actions/post-steps"
|
|
build-linux-clang-13-asan-ubsan-with-folly:
|
|
if: ${{ github.repository_owner == 'facebook' }}
|
|
runs-on:
|
|
labels: 16-core-ubuntu
|
|
container:
|
|
image: zjay437/rocksdb:0.6
|
|
options: --shm-size=16gb
|
|
steps:
|
|
- uses: actions/checkout@v4.1.0
|
|
- uses: "./.github/actions/pre-steps"
|
|
- uses: "./.github/actions/setup-folly"
|
|
- uses: "./.github/actions/build-folly"
|
|
- run: CC=clang-13 CXX=clang++-13 LIB_MODE=static USE_CLANG=1 USE_FOLLY=1 COMPILE_WITH_UBSAN=1 COMPILE_WITH_ASAN=1 make -j32 check
|
|
- uses: "./.github/actions/post-steps"
|
|
build-linux-valgrind:
|
|
if: ${{ github.repository_owner == 'facebook' }}
|
|
runs-on:
|
|
labels: 16-core-ubuntu
|
|
container:
|
|
image: zjay437/rocksdb:0.6
|
|
options: --shm-size=16gb
|
|
steps:
|
|
- uses: actions/checkout@v4.1.0
|
|
- uses: "./.github/actions/pre-steps"
|
|
- run: PORTABLE=1 make V=1 -j32 valgrind_test
|
|
- uses: "./.github/actions/post-steps"
|
|
build-windows-vs2022-avx2:
|
|
if: ${{ github.repository_owner == 'facebook' }}
|
|
runs-on: windows-2022
|
|
env:
|
|
CMAKE_GENERATOR: Visual Studio 17 2022
|
|
CMAKE_PORTABLE: AVX2
|
|
steps:
|
|
- uses: actions/checkout@v4.1.0
|
|
- uses: "./.github/actions/windows-build-steps"
|
|
build-windows-vs2022:
|
|
if: ${{ github.repository_owner == 'facebook' }}
|
|
runs-on: windows-2022
|
|
env:
|
|
CMAKE_GENERATOR: Visual Studio 17 2022
|
|
CMAKE_PORTABLE: 1
|
|
steps:
|
|
- uses: actions/checkout@v4.1.0
|
|
- uses: "./.github/actions/windows-build-steps"
|
|
build-linux-arm-test-full:
|
|
if: ${{ github.repository_owner == 'facebook' }}
|
|
runs-on:
|
|
labels: 4-core-ubuntu-arm
|
|
steps:
|
|
- uses: actions/checkout@v4.1.0
|
|
- uses: "./.github/actions/pre-steps"
|
|
- run: sudo apt-get update && sudo apt-get install -y build-essential libgflags-dev
|
|
- run: make V=1 J=4 -j4 check
|
|
- uses: "./.github/actions/post-steps"
|