From a49a8c62bcf530775fc1dc03d34eb34e49d3738b Mon Sep 17 00:00:00 2001 From: Robert Konrad Date: Mon, 5 Feb 2024 16:37:46 +0100 Subject: [PATCH] [GitHub] Check if M1 runners can run Metal --- .github/workflows/macos-metal.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos-metal.yml b/.github/workflows/macos-metal.yml index 6d0a15dc7..859fafca3 100644 --- a/.github/workflows/macos-metal.yml +++ b/.github/workflows/macos-metal.yml @@ -11,7 +11,7 @@ on: jobs: build: - runs-on: macOS-latest + runs-on: macos-14 steps: - uses: actions/checkout@v2 @@ -19,5 +19,7 @@ jobs: run: ./get_dlc - name: Compile run: ./make -g metal --kinc . --from Tests/Empty --compile + - name: Compile and run Test 1 + run: ./make --kinc . --from Tests/Shader --run - name: Compile and Run Test 2 (SIMD) - run: ./make --kinc . --from Tests/SIMD --compile --run + run: ./make --kinc . --from Tests/SIMD --run