From 59879d856b23f4fa7ff7ca80f187bfd43d0cd16f Mon Sep 17 00:00:00 2001 From: adelhpour Date: Wed, 1 May 2024 11:00:11 -0700 Subject: [PATCH] CI/CD using GitHub Actions is updated. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f99448a7de5cb8..a4534db9b23bb9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -146,13 +146,13 @@ jobs: -DCMAKE_OSX_ARCHITECTURES=${{ matrix.platform.arch }} \ -DCMAKE_INSTALL_PREFIX="${RUNNER_WORKSPACE}/install-llvm" - - name: Build and Install LLVM + - name: Build and install LLVM shell: bash run: | cd ${RUNNER_WORKSPACE}/build-llvm cmake --build . --target install --config ${{ matrix.platform.build_type }} - - name: Give Execute permissions to llvm binaries + - name: Give Execute permissions to LLVM binaries shell: bash run: | cd ${RUNNER_WORKSPACE} @@ -167,7 +167,7 @@ jobs: # we need to use relative path as actions/upload-artifact@v1 cannot find it on containerized runners echo "artifacts_path=../install-llvm" >> "${GITHUB_ENV}" - - name: Upload llvm binaries + - name: Upload LLVM binaries uses: actions/upload-artifact@v1 with: name: ${{env.artifacts_name}}