Skip to content

Commit

Permalink
CI/CD using GitHub Actions is updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
adelhpour committed May 1, 2024
1 parent 8de8620 commit 59879d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand All @@ -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}}
Expand Down

0 comments on commit 59879d8

Please sign in to comment.