llvm: add sanity check for call instruction calling convention #4127
Workflow file for this run
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: HLS | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| hls-test-suite: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: '0' | |
| - name: "Build jlm" | |
| uses: ./.github/actions/BuildJlm | |
| with: | |
| enable-hls: true | |
| - name: "Install verilator" | |
| uses: ./.github/actions/InstallPackages | |
| with: | |
| install-verilator: true | |
| - name: "Run hls-test-suite" | |
| run: ./scripts/run-hls-test.sh |