Add TMA unittest app #229
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: Test Build | |
| # Controls when the workflow will run | |
| on: | |
| # Triggers the workflow on push or pull request events but only for the mydev branch | |
| push: | |
| branches-ignore: | |
| - "gh-readonly-queue**" | |
| pull_request: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| test-12-8: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/accel-sim/accel-sim-framework:Ubuntu-24.04-cuda-12.8-minimal | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - name: Checkout repository with submodules | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: false # This clones submodules | |
| - name: Build Apps | |
| run: | | |
| git config --global --add safe.directory /__w/gpu-app-collection/gpu-app-collection | |
| git submodule update --init -- src/cuda/cuda-samples | |
| git submodule update --init -- src/cuda/cutlass-bench | |
| /bin/bash test-build.sh | |
| - name: Print Successful Apps | |
| if: always() | |
| run: | | |
| echo "Built `ls bin/12.8/release | wc` Apps:" | |
| ls bin/12.8/release |