31 lines · yaml
1name: HLSL Tests2 3permissions:4 contents: read5 6on:7 workflow_dispatch:8 pull_request:9 branches:10 - main11 paths:12 - llvm/**/DirectX/**13 - .github/workflows/hlsl*14 - clang/*HLSL*/**/*15 - clang/**/*HLSL*16 - llvm/**/Frontend/HLSL/**/*17 18jobs:19 HLSL-Tests:20 strategy:21 fail-fast: false22 matrix:23 runs-on:24 - hlsl-macos25 26 uses: ./.github/workflows/hlsl-test-all.yaml27 with:28 SKU: hlsl-macos29 TestTarget: check-hlsl-clang-mtl # TODO: This target changes based on SKU30 LLVM-ref: ${{ github.ref }}31