From 67a6d8d9328806971996d66c98b2f42ea6d5cea0 Mon Sep 17 00:00:00 2001 From: Jay Kwak <82421531+jkwak-work@users.noreply.github.com> Date: Mon, 9 Sep 2024 07:41:25 -0700 Subject: [PATCH] Remove unneeded test-slang.yml --- .github/workflows/test-slang.yml | 61 -------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 .github/workflows/test-slang.yml diff --git a/.github/workflows/test-slang.yml b/.github/workflows/test-slang.yml deleted file mode 100644 index 0cdf8b2300..0000000000 --- a/.github/workflows/test-slang.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: "CI [2/2]" - -on: - workflow_run: - workflows: ["CI [1/2]"] - types: - - completed - -jobs: - #on-success: - test: - strategy: - matrix: - os: [linux, macos, windows] - config: [debug, release] - compiler: [gcc, clang, cl] - platform: [x86_64, aarch64] - exclude: - # Default to x64, but aarch64 on osx - - { os: linux, platform: aarch64 } - - { os: windows, platform: aarch64 } - - { os: macos, platform: x86_64 } - # Unused compiler configs - - { os: linux, compiler: clang } - - { os: linux, compiler: cl } - - { os: windows, compiler: gcc } - - { os: windows, compiler: clang } - - { os: macos, compiler: gcc } - - { os: macos, compiler: cl } - include: - - { os: linux, runs-on: ubuntu-20.04 } - - { os: macos, runs-on: macos-latest } - - { os: windows, runs-on: windows-latest } - - os: windows - config: release - runs-on: [Windows, self-hosted] - runs-on: ${{ matrix.runs-on }} - - steps: - - uses: actions/checkout@v3 - with: - submodules: 'recursive' - fetch-depth: '0' - - - name: Download Slang executables - uses: actions/download-artifact@v4 - with: - name: test-slang-${{matrix.os}}-${{matrix.platform}}-${{matrix.compiler}}-${{matrix.config}} - path: | - build/*/bin - build/test-slang.sh - build/test-slang-via-glsl.sh - - - name: Test Slang - run: | - . build/test-slang.sh - - - name: Test Slang via GLSL - run: | - . build/test-slang-via-glsl.sh -