Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tapspatel committed Aug 26, 2024
1 parent 006285d commit 3e9e2b6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
python3 -m venv whls_env
source whls_env/bin/activate
pip show ttrt && pip uninstall -y ttrt
pip install *.whl --force-reinstall
pip install ttrt-whl-run.whl --force-reinstall
- name: Generate system descriptor
shell: bash
Expand Down Expand Up @@ -196,33 +196,33 @@ jobs:
with:
name: system-desc-n300.ttsys

- name: Run host side tests
- name: (Host) Run tests
shell: bash
run: |
source env/activate
cmake --build build -- check-ttmlir
- name: Run test cases against n150 system
- name: (n150) Run tests
shell: bash
run: |
source env/activate
export SYSTEM_DESC_PATH="${GITHUB_WORKSPACE}/system-desc-n150.ttsys"
cmake --build build -- check-ttmlir
- name: Upload n150 test artifacts
- name: (n150) Upload test artifacts
uses: actions/upload-artifact@v4
with:
name: n150/Silicon
path: build/test/ttmlir/Silicon

- name: Run test cases against n300 system
- name: (n300) Run tests
shell: bash
run: |
source env/activate
export SYSTEM_DESC_PATH="${GITHUB_WORKSPACE}/system-desc-n300.ttsys"
cmake --build build -- check-ttmlir
- name: Upload n300 test artifacts
- name: (n300) Upload test artifacts
uses: actions/upload-artifact@v4
with:
name: n300/Silicon
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
python3 -m venv whls_env
source whls_env/bin/activate
pip show ttrt && pip uninstall -y ttrt
pip install *.whl --force-reinstall
pip install ttrt-whl-${{ matrix.build.name }}.whl --force-reinstall
- name: Download tests
uses: actions/download-artifact@v4
Expand Down

0 comments on commit 3e9e2b6

Please sign in to comment.