Merge pull request #41 from UWASL/release_v2 #1
This file contains hidden or 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: Makefile CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| - name : Set up build environment | |
| run: sudo apt install -y libssl-dev libxxhash-dev | |
| working-directory: build | |
| - name: Check base build | |
| run: make all | |
| working-directory: build | |
| - name: Check SIMD build | |
| run: make simd_all | |
| working-directory: build | |