Explicitly verify dependency between architectures (like sse3 implies… #6
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: Arch consistency check | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.job }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout xsimd | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt install g++ | |
- name: Check architecture consistency | |
run: cd test && sh ./check_arch.sh |