add script to dump vdso #43
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
on: [push, workflow_dispatch] | |
name: CI | |
jobs: | |
build_and_test: | |
name: Tests | |
strategy: | |
# Each arch in the matrix may fail/succeed independently, do not | |
# cancel all runs on the first failure | |
fail-fast: false | |
matrix: | |
arch: [Arm64, x64, riscv64] | |
#runs-on: [self-hosted, linux] | |
runs-on: ${{ matrix.arch }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cargo test |