Test QAIC Software kit Compilation #31
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: Test QAIC Software kit Compilation | |
| on: | |
| schedule: | |
| - cron: "1 1 * * 1" | |
| jobs: | |
| build_ubuntu_20_04: | |
| runs-on: ubuntu-20.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| compiler: [ "gcc", "llvm" ] | |
| llvm-version: [ "12.0.1", "13.0.1", "14.0.0", "15.0.6" ] | |
| exclude: | |
| - llvm-version: "12.0.1" | |
| - llvm-version: "13.0.1" | |
| - llvm-version: "14.0.0" | |
| compiler: "gcc" | |
| - llvm-version: "15.0.6" | |
| compiler: "gcc" | |
| include: | |
| - llvm-version: " " | |
| compiler: "gcc" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Pull MLOps repository | |
| run: | | |
| pip install mlc-scripts | |
| mlcr get,sys-utils-mlc --quiet | |
| - name: Test Software Kit for compilation on Ubuntu 20.04 | |
| run: | | |
| mlcr get,qaic,software,kit --adr.compiler.tags=${{ matrix.compiler }} --adr.compiler.version=${{ matrix.llvm-version }} --quiet |