[pull] master from phate:master #331
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: Build | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| clang-debug-all-dialects-asserts: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Build jlm with clang++ for all dialects in debug mode." | |
| uses: ./.github/actions/BuildJlm | |
| with: | |
| build-mode: debug | |
| cxx: clang++ | |
| enable-hls: true | |
| enable-mlir: true | |
| make-target: all | |
| enable-asserts: 'true' | |
| clang-release-all-dialects: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Build jlm with clang++ for all dialects in release mode." | |
| uses: ./.github/actions/BuildJlm | |
| with: | |
| build-mode: release | |
| cxx: clang++ | |
| enable-hls: true | |
| enable-mlir: true | |
| make-target: all | |
| enable-asserts: 'false' | |
| clang-release-no-dialects: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Build jlm with clang++ for all dialects in release mode." | |
| uses: ./.github/actions/BuildJlm | |
| with: | |
| build-mode: release | |
| cxx: clang++ | |
| enable-hls: false | |
| enable-mlir: false | |
| make-target: all | |
| enable-asserts: 'false' | |
| gcc-debug-all-dialects-asserts: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Build jlm dialects with g++ in debug mode." | |
| uses: ./.github/actions/BuildJlm | |
| with: | |
| build-mode: debug | |
| cxx: g++ | |
| enable-hls: true | |
| enable-mlir: true | |
| make-target: all | |
| enable-asserts: 'true' | |
| gcc-release-all-dialects: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Build jlm dialects with g++ in release mode." | |
| uses: ./.github/actions/BuildJlm | |
| with: | |
| build-mode: release | |
| cxx: g++ | |
| enable-hls: true | |
| enable-mlir: true | |
| make-target: all | |
| enable-asserts: 'false' | |
| gcc-release-no-dialects: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Build jlm dialects with g++ in release mode." | |
| uses: ./.github/actions/BuildJlm | |
| with: | |
| build-mode: release | |
| cxx: g++ | |
| enable-hls: false | |
| enable-mlir: false | |
| make-target: all | |
| enable-asserts: 'false' |