diff --git a/.github/workflows/tpp-mlir.yml b/.github/workflows/tpp-mlir.yml index 4a8a55de1..0043201be 100644 --- a/.github/workflows/tpp-mlir.yml +++ b/.github/workflows/tpp-mlir.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: GCC Release - run: "echo Hi" + run: "echo ${{github.event.pull_request.labels}}" # run: "${{ env.SRUN }} --partition=emr --time=0:30:00 -- \ # 'KIND=Release COMPILER=gcc CHECK=1 ONEDNN=1 \ # ${{ github.workspace }}/scripts/github/build_tpp.sh'" @@ -31,7 +31,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: GCC Debug - run: "echo Hi" + run: "echo ${{github.event.pull_request.labels}}" # run: "${{ env.SRUN }} --partition=emr --time=0:30:00 -- \ # 'KIND=Debug COMPILER=gcc CHECK=1 ONEDNN=1 \ # ${{ github.workspace }}/scripts/github/build_tpp.sh'" @@ -42,7 +42,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Clang Release - run: "echo Hi" + run: "echo ${{github.event.pull_request.labels}}" # run: "${{ env.SRUN }} --partition=emr --time=0:30:00 -- \ # 'KIND=Release COMPILER=clang LINKER=lld CHECK=1 ONEDNN=1 \ # ${{ github.workspace }}/scripts/github/build_tpp.sh'" @@ -53,7 +53,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Clang Debug Sanitizers - run: "echo Hi" + run: "echo ${{github.event.pull_request.labels}}" # run: "${{ env.SRUN }} --partition=emr --time=0:30:00 -- \ # 'KIND=Debug COMPILER=clang LINKER=lld SANITIZERS=1 CHECK=1 ONEDNN=1 \ # ${{ github.workspace }}/scripts/github/build_tpp.sh'"