native_tests: native tests #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ledgers | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
Ledgers: | |
runs-on: private | |
env: | |
CC: gcc | |
strategy: | |
matrix: | |
test_case: | |
- run-runtime-test-1 | |
- run-runtime-test-2 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
submodules: recursive | |
- uses: ./.github/actions/deps | |
- uses: ./.github/actions/hugepages | |
- name: build | |
run: | | |
EXTRAS='secp256k1 rocksdb' MACHINE=linux_clang_x86_64 ./contrib/make-j all | |
- name: make ${{ matrix.test_case }} | |
run: | | |
sudo prlimit --pid $$ --memlock=-1:-1 | |
EXTRAS='secp256k1 rocksdb' MACHINE=linux_clang_x86_64 make ${{ matrix.test_case }} |