From edd75fc809893525f459cd48eb5b89592b0003a2 Mon Sep 17 00:00:00 2001 From: coco875 <59367621+coco875@users.noreply.github.com> Date: Wed, 6 Aug 2025 16:14:52 +0200 Subject: short name of toolchain --- .github/workflows/linux_build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '.github/workflows/linux_build.yml') diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml index 2e11e8c..a74eec9 100644 --- a/.github/workflows/linux_build.yml +++ b/.github/workflows/linux_build.yml @@ -13,24 +13,24 @@ jobs: matrix: config: [Release, Debug] standalone: [OFF, ON] - toolchain: [cmake/toolchain/linux-gnu.cmake, cmake/toolchain/linux-clang.cmake] + toolchain: [linux-gnu, linux-clang] steps: - uses: actions/checkout@v4 - name: Install dependencies run: sudo apt-get install cmake ninja-build libbz2-dev - name: Build run: | - cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DUSE_STANDALONE=${{ matrix.standalone }} -DCMAKE_TOOLCHAIN_FILE=${{ matrix.toolchain }} + cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DUSE_STANDALONE=${{ matrix.standalone }} -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain/${{ matrix.toolchain }}.cmake cmake --build build-cmake -j - name: Create Package - if: ${{ matrix.config == 'Release' && matrix.standalone == 'ON' }} + if: ${{ matrix.config == 'Release' && matrix.standalone == 'ON' && matrix.toolchain == 'linux-gnu' }} run: | mkdir torch-release mv build-cmake/torch torch-release/ cp "$(ldconfig -p | grep libbz2.so.1.0 | tr ' ' '\n' | grep /| head -n1)" torch-release/ - name: Publish packaged artifacts - if: ${{ matrix.config == 'Release' && matrix.standalone == 'ON' }} + if: ${{ matrix.config == 'Release' && matrix.standalone == 'ON' && matrix.toolchain == 'linux-gnu' }} uses: actions/upload-artifact@v4 with: - name: torch-linux-x64-${{ matrix.toolchain }} + name: torch-linux-x64 path: torch-release \ No newline at end of file -- cgit v1.2.3