From 5457472f519a1d06ba4b85f93ce8cf9d601b12a3 Mon Sep 17 00:00:00 2001 From: diamante0018 Date: Mon, 14 Apr 2025 09:55:03 +0200 Subject: [PATCH] build: remove debug build matrix --- .github/workflows/build.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3cc1e46..f7abec6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,6 @@ jobs: fail-fast: false matrix: configuration: - - debug - release compiler: - msvc @@ -88,7 +87,6 @@ jobs: fail-fast: false matrix: configuration: - - debug - release arch: - x86 @@ -178,7 +176,6 @@ jobs: fail-fast: false matrix: configuration: - - debug - release arch: - arm64 @@ -193,7 +190,7 @@ jobs: fetch-depth: 0 lfs: false - - name: Compress the build directory + - name: Create the build directory run: mkdir -p build - name: Download project files @@ -202,20 +199,14 @@ jobs: name: linux-project-files path: build/ - - name: Install LLVM - run: | - wget https://apt.llvm.org/llvm.sh - chmod +x llvm.sh - sudo ./llvm.sh 18 - - name: Build ${{matrix.arch}} ${{matrix.configuration}} binaries working-directory: ${{ github.workspace }} run: | pushd build make config=${{matrix.configuration}}_${{matrix.arch}} -j$(nproc) env: - CC: clang-18 - CXX: clang++-18 + CC: clang + CXX: clang++ - name: Upload ${{matrix.arch}} ${{matrix.configuration}} binaries uses: actions/upload-artifact@main @@ -231,7 +222,6 @@ jobs: fail-fast: false matrix: configuration: - - debug - release arch: - amd64