nightly-candidate.yml 581 B

12345678910111213141516171819
  1. name: facebook/rocksdb/nightly
  2. on: workflow_dispatch
  3. permissions: {}
  4. jobs:
  5. # These jobs would be in nightly but are failing or otherwise broken for
  6. # some reason.
  7. build-linux-arm-test-full:
  8. if: ${{ github.repository_owner == 'facebook' }}
  9. runs-on:
  10. labels: arm64large
  11. container:
  12. image: ubuntu-2004:202111-02
  13. options: --shm-size=16gb
  14. steps:
  15. - uses: actions/checkout@v4.1.0
  16. - uses: "./.github/actions/pre-steps"
  17. - uses: "./.github/actions/install-gflags"
  18. - run: make V=1 J=4 -j4 check
  19. - uses: "./.github/actions/post-steps"