From 13a91a785733005b053f3fb74b71b9a91063c6e6 Mon Sep 17 00:00:00 2001 From: ygdrasil-io Date: Mon, 12 Feb 2024 02:59:02 +0100 Subject: [PATCH] test --- .github/workflows/test.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f7082c39..f5d8b09d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,19 +33,16 @@ jobs: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} restore-keys: ${{ runner.os }}-gradle - - name: find clang - run: find / -name "libclang-15.so*" - if: matrix.os == 'ubuntu-latest' - name: Build & test klang macos if: matrix.os == 'macos-14' run: | cd ./klang - LIBCLANG_PATH="/usr/lib/llvm-15/lib/libclang-15.so.1" ./gradlew test - name: Build & test klang ubuntu if: matrix.os == 'ubuntu-latest' run: | cd ./klang + LIBCLANG_PATH="/usr/lib/llvm-15/lib/libclang-15.so.1" ./gradlew test - name: Bundle the build report if: failure()