The last one that blocked vectorization was going beyond the uint32 r… #63
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: build dist | |
on: | |
push: | |
pull_request: | |
jobs: | |
linux-build: | |
name: build on linux | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: apt update | |
run: | | |
sudo apt-get update | |
- name: apt install | |
run: | | |
echo y | sudo apt-get install doxygen | |
- name: run tests | |
run: clang cmidi2_test.c -o cmidi2_test && ./cmidi2_test |