Skip to content

native_tests: native tests #13

native_tests: native tests

native_tests: native tests #13

Workflow file for this run

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 }}