Fix VLA pointer and used in function parameter #527
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: AllTests | |
on: | |
push: | |
branches: | |
- main | |
- actions/** | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: make xcc | |
run: make -j8 all | |
- name: test xcc | |
run: make test | |
- name: test xcc gen2 | |
run: make test-gen2 | |
- name: setup | |
run: npm ci | |
- name: make wcc | |
run: make -j8 wcc | |
- name: test wcc | |
run: make test-wcc | |
- name: test wcc gen2 | |
run: make test-wcc-gen2 |