Skip to content

Commit

Permalink
chore: logging where APT installs the newly downloaded libc++
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRustifyer committed Aug 21, 2024
1 parent 9cd87d2 commit f9e958e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/project_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:
echo "-----> Updating the symbolic link to point to Clang ${{ matrix.clang_version }}"
sudo rm -f /usr/bin/clang++
sudo ln -s /usr/bin/clang++-${{ matrix.clang_version }} /usr/bin/clang++
# Find the system libc++ installations
find /usr -type d \( -name 'libc++*' -o -name 'llvm*' -o -name 'clang*' \) -exec echo "libc++ at: {}" \;
- name: Generate a Zork++ release build
run: |
Expand Down

0 comments on commit f9e958e

Please sign in to comment.